-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathupdate.js
33 lines (29 loc) · 1.07 KB
/
update.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"use strict";
/* eslint-disable no-console */
const fs = require("fs");
const path = require("path");
const iconvLite = require("iconv-lite");
async function main() {
const res = await fetch("https://encoding.spec.whatwg.org/encodings.json");
const body = await res.json();
const labelsToNames = {};
const supportedNames = [];
for (const entry of body) {
for (const encoding of entry.encodings) {
if (iconvLite.encodingExists(encoding.name) || encoding.name === "x-user-defined") {
supportedNames.push(encoding.name);
for (const label of encoding.labels) {
labelsToNames[label] = encoding.name;
}
}
}
}
const labelsToNamesOutput = JSON.stringify(labelsToNames, undefined, 2);
fs.writeFileSync(path.resolve(__dirname, "../lib/labels-to-names.json"), labelsToNamesOutput);
const supportedNamesOutput = JSON.stringify(supportedNames, undefined, 2);
fs.writeFileSync(path.resolve(__dirname, "../lib/supported-names.json"), supportedNamesOutput);
}
main().catch(e => {
console.error(e.stack);
process.exit(1);
});