ethers.js/packages/wordlists/lib.esm/wordlists.js
2020-11-16 23:07:24 -05:00

21 lines
561 B
JavaScript

import { langCz as cz } from "./lang-cz";
import { langEn as en } from "./lang-en";
import { langEs as es } from "./lang-es";
import { langFr as fr } from "./lang-fr";
import { langJa as ja } from "./lang-ja";
import { langKo as ko } from "./lang-ko";
import { langIt as it } from "./lang-it";
import { langZhCn as zh_cn, langZhTw as zh_tw } from "./lang-zh";
export const wordlists = {
cz: cz,
en: en,
es: es,
fr: fr,
it: it,
ja: ja,
ko: ko,
zh: zh_cn,
zh_cn: zh_cn,
zh_tw: zh_tw
};
//# sourceMappingURL=wordlists.js.map