├── .gitattributes ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dictionary ├── not_safe.txt └── safe.txt ├── eslint.config.mjs ├── jest.config.mjs ├── package.json ├── src ├── dictionary.ts ├── eyo.ts ├── index.ts ├── notSafeDictionary.ts └── safeDictionary.ts ├── test ├── globals.ts ├── index.test.ts └── tests.ts ├── tools ├── convert.mjs ├── createDictionaries.mjs ├── pack.mjs └── packer.mjs └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .* 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/.npmrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/README.md -------------------------------------------------------------------------------- /dictionary/not_safe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/dictionary/not_safe.txt -------------------------------------------------------------------------------- /dictionary/safe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/dictionary/safe.txt -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/package.json -------------------------------------------------------------------------------- /src/dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/src/dictionary.ts -------------------------------------------------------------------------------- /src/eyo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/src/eyo.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/notSafeDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/src/notSafeDictionary.ts -------------------------------------------------------------------------------- /src/safeDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/src/safeDictionary.ts -------------------------------------------------------------------------------- /test/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/test/globals.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/test/tests.ts -------------------------------------------------------------------------------- /tools/convert.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/tools/convert.mjs -------------------------------------------------------------------------------- /tools/createDictionaries.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/tools/createDictionaries.mjs -------------------------------------------------------------------------------- /tools/pack.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/tools/pack.mjs -------------------------------------------------------------------------------- /tools/packer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/tools/packer.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2yo/eyo-kernel/HEAD/tsconfig.json --------------------------------------------------------------------------------