Sign in
chromium
/
devtools
/
devtools-frontend.git
/
HEAD
/
.
/
node_modules
/
fast-uri
/
lib
/
scopedChars.js
blob: d4a61103b525e0774b770cb6c631e9839be5a221 [
file
] [
log
] [
blame
]
'use strict'
const
HEX
=
{
0
:
0
,
1
:
1
,
2
:
2
,
3
:
3
,
4
:
4
,
5
:
5
,
6
:
6
,
7
:
7
,
8
:
8
,
9
:
9
,
a
:
10
,
A
:
10
,
b
:
11
,
B
:
11
,
c
:
12
,
C
:
12
,
d
:
13
,
D
:
13
,
e
:
14
,
E
:
14
,
f
:
15
,
F
:
15
}
module
.
exports
=
{
HEX
}