UNPKG

taipa

Version:

Taiwanese morphological parsing library

15 lines 510 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.graphAnalyzeHangul = void 0; const unit_1 = require("../unit"); const hangulres_1 = require("./hangulres"); /** * Analyzes a string into graphemes. Graphemic analysis. * @param str A string */ function graphAnalyzeHangul(str) { const gm = new unit_1.GraphemeMaker(hangulres_1.lowerLettersHangul); return gm.makeGraphemes(str); } exports.graphAnalyzeHangul = graphAnalyzeHangul; //# sourceMappingURL=analyzer.js.map