fix
This commit is contained in:
parent
a5460cd540
commit
ee3ac59561
1
.eslintignore
Normal file
1
.eslintignore
Normal file
@ -0,0 +1 @@
|
||||
*.d.ts
|
6
index.js
6
index.js
@ -5,7 +5,9 @@
|
||||
* Created by Timo Hocker <timo@scode.ovh>, March 2020
|
||||
*/
|
||||
|
||||
|
||||
// @ts-nocheck
|
||||
/* eslint-disable no-magic-numbers */
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
@ -51,7 +53,7 @@ function to_hex (str, encoding = '') {
|
||||
* @returns {string} hex
|
||||
*/
|
||||
function num_to_hex (n) {
|
||||
return n.toString(16);
|
||||
return n.toString (16);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -61,7 +63,7 @@ function num_to_hex (n) {
|
||||
* @returns {number} number
|
||||
*/
|
||||
function hex_to_num (h) {
|
||||
return parseInt(h, 16);
|
||||
return parseInt (h, 16);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user