UNPKG

speech-rule-engine

Version:

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

25 lines 708 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 nn() { 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; loc.SUBISO = { default: '', current: '', all: ['', 'alt'] }; return loc; } //# sourceMappingURL=locale_nn.js.map