anvim-ts
v0.1.1
Published
AVIM-compatible Vietnamese input engine in TypeScript
Maintainers
Readme
anvim-ts
AVIM-compatible Vietnamese input engine (TypeScript)
src/anvim.ts: TypeScript port (ANVIM)legacy/avim.js: Original AVIM JavaScript by Hieu Tran Dang (header retained)
Install
npm i anvim-tsUsage
Typed transform:
import anvim, { AnvimEngine } from "anvim-ts";
console.log(anvim("vieetj")); // "việt"
const engine = new AnvimEngine();
let out = "";
for (const ch of "thuowngs") out = engine.processWithKey(out, ch);
console.log(out); // "thương"