UNPKG
bcbp-parser
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
BCBP boarding pass code parser
github.com/cluny85/bcbp-parser
cluny85/bcbp-parser
bcbp-parser
/
dist
/
utils.js
11 lines
(9 loc)
•
241 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
var
hexToDec =
function
hexToDec
(
hex
) {
return
hex.
toLowerCase
().
split
(
''
).
reduce
(
function
(
result, char
) {
return
result *
16
+
'0123456789abcdefgh'
.
indexOf
(char); },
0
); };
module
.
exports
= {
hexToDec
: hexToDec };