hangulx
Version:
Providing various utilities for Hangul
22 lines (21 loc) • 1.61 kB
JavaScript
;
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
if (ar || !(i in from)) {
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
ar[i] = from[i];
}
}
return to.concat(ar || Array.prototype.slice.call(from));
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.compoundSurnameSet = exports.compoundSurnames = void 0;
var main_compound_surname_1 = require("./main-compound-surname");
var japanese_compound_surname_1 = require("./japanese-compound-surname");
var unknown_origin_suername_1 = require("./unknown-origin-suername");
var extinct_compound_surname_1 = require("./extinct-compound-surname");
var chinese_compound_surname_1 = require("./chinese-compound-surname");
var ethnic_compound_surname_1 = require("./ethnic-compound-surname");
var other_compound_surname_1 = require("./other-compound-surname");
exports.compoundSurnames = __spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], main_compound_surname_1.mainCompoundSurnames, true), japanese_compound_surname_1.japaneseCompoundSurnames, true), unknown_origin_suername_1.unknownOriginCompoundSurnames, true), extinct_compound_surname_1.extinctCompoundSurnames, true), chinese_compound_surname_1.chineseCompoundSurnames, true), ethnic_compound_surname_1.ethnicCompoundSurnames, true), other_compound_surname_1.otherCompoundSurnames, true);
exports.compoundSurnameSet = new Set(exports.compoundSurnames);