![JAR search and dependency download from the Maven repository](/logo.png)
package.operations.build-unicode.mjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of es-abstract Show documentation
Show all versions of es-abstract Show documentation
ECMAScript spec abstract operations.
import fs from 'fs';
import path from 'path';
import C from '@unicode/unicode-15.0.0/Case_Folding/C/symbols.js';
import S from '@unicode/unicode-15.0.0/Case_Folding/S/symbols.js';
function normalize(map) {
return Object.fromEntries(Array.from(map, ([o, i]) => [i, [].concat(o)[0]]));
}
const cases = {
C: normalize(C),
S: normalize(S),
};
fs.writeFileSync(
path.join(process.cwd(), './helpers/caseFolding.json'),
JSON.stringify(cases, null, '\t'),
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy