JISX0208/0213 - Unicode table.
npm i @japont/jis-codepoint-table
# -- OR --
yarn add @japont/jis-codepoint-table
const { Table } = require("@japont/jis-codepoint-table");
const Level1Chars = Table.filter(i => i.level === 1)
.map(i => String.fromCodePoint(i.codePoint));
See index.d.ts
.
interface Info {
men: number;
ku: number;
ten: number;
level?: number;
codePoint?: number | number[];
fullwidth?: number;
windows?: number;
}
var Table: Info[];
PRs accepted.
- Copyright (C) 2001 [email protected], All Rights Reserved.
- Copyright (C) 2001 I'O, All Rights Reserved.
- Copyright (C) 2006 Project X0213, All Rights Reserved.
You can use, modify, distribute this table freely.
To the extent possible under law, the person who associated CC0 with this has waived all copyright and related or neighboring rights to this.
You should have received a copy of the CC0 legalcode along with this work. If not, see http://creativecommons.org/publicdomain/zero/1.0/.