first commit
This commit is contained in:
30
app_vue/node_modules/fast-uri/lib/scopedChars.js
generated
vendored
Normal file
30
app_vue/node_modules/fast-uri/lib/scopedChars.js
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
'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
|
||||
}
|
Reference in New Issue
Block a user