UNPKG

js-mdict

Version:

mdict (*.mdx, *.mdd) file reader. Licensed under AGPL-3.0 for better community cooperation and commercial value protection.

11 lines 394 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.replaceLatinies = replaceLatinies; exports.hasLatinies = hasLatinies; function replaceLatinies(word) { return word.normalize('NFD').replace(/[\u0300-\u036f]/g, '\u9999'); } function hasLatinies(word) { return word.normalize('NFD').search(/[\u0300-\u036f]/g) != -1; } //# sourceMappingURL=latins.js.map