UNPKG

@palasimi/ipa-cluster

Version:

Cluster words with similar IPA transcriptions together

18 lines 612 B
"use strict"; // SPDX-License-Identifier: GPL-3.0-or-later // Copyright (c) 2023 Levi Gruspe // Final IR. Object.defineProperty(exports, "__esModule", { value: true }); exports.finalize = void 0; const align_1 = require("./align"); const expand_1 = require("./expand"); const split_1 = require("./split"); const squash_1 = require("./squash"); /** * Compiles the intermediate representation into a final representation. */ function finalize(ir) { return (0, split_1.split)((0, align_1.align)((0, expand_1.expand)((0, squash_1.squash)(ir)))); } exports.finalize = finalize; //# sourceMappingURL=final.js.map