UNPKG

speech-rule-engine

Version:

A standalone speech rule engine for XML structures, based on the original engine from ChromeVox.

20 lines 615 B
import { createLocale } from '../locale.js'; import { nestingToString } from '../locale_util.js'; import { NUMBERS } from '../numbers/numbers_nn.js'; import * as tr from '../transformers.js'; let locale = null; export function nb() { if (!locale) { locale = create(); } return locale; } function create() { const loc = createLocale(); loc.NUMBERS = NUMBERS; loc.ALPHABETS.combiner = tr.Combiners.prefixCombiner; loc.ALPHABETS.digitTrans.default = NUMBERS.numberToWords; loc.FUNCTIONS.radicalNestDepth = nestingToString; return loc; } //# sourceMappingURL=locale_nb.js.map