UNPKG

hangulx

Version:

Providing various utilities for Hangul

19 lines (18 loc) 1.28 kB
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)); }; import { mainCompoundSurnames } from "./main-compound-surname"; import { japaneseCompoundSurnames } from "./japanese-compound-surname"; import { unknownOriginCompoundSurnames } from "./unknown-origin-suername"; import { extinctCompoundSurnames } from "./extinct-compound-surname"; import { chineseCompoundSurnames } from "./chinese-compound-surname"; import { ethnicCompoundSurnames } from "./ethnic-compound-surname"; import { otherCompoundSurnames } from "./other-compound-surname"; export var compoundSurnames = __spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], mainCompoundSurnames, true), japaneseCompoundSurnames, true), unknownOriginCompoundSurnames, true), extinctCompoundSurnames, true), chineseCompoundSurnames, true), ethnicCompoundSurnames, true), otherCompoundSurnames, true); export var compoundSurnameSet = new Set(compoundSurnames);