(fileName, object)
| 83 | }); |
| 84 | |
| 85 | const writeJSON = function(fileName, object) { |
| 86 | const json = jsesc(object, { |
| 87 | 'compact': false, |
| 88 | 'json': true |
| 89 | }); |
| 90 | fs.writeFileSync(fileName, json + '\n'); |
| 91 | }; |
| 92 | |
| 93 | writeJSON('data/decode-map.json', sortObject(decodeMap)); |
| 94 | writeJSON('data/decode-map-legacy.json', sortObject(decodeMapLegacy)); |