source: imaps-frontend/node_modules/fast-uri/lib/scopedChars.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 245 bytes
Line 
1'use strict'
2
3const HEX = {
4 0: 0,
5 1: 1,
6 2: 2,
7 3: 3,
8 4: 4,
9 5: 5,
10 6: 6,
11 7: 7,
12 8: 8,
13 9: 9,
14 a: 10,
15 A: 10,
16 b: 11,
17 B: 11,
18 c: 12,
19 C: 12,
20 d: 13,
21 D: 13,
22 e: 14,
23 E: 14,
24 f: 15,
25 F: 15
26}
27
28module.exports = {
29 HEX
30}
Note: See TracBrowser for help on using the repository browser.