├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── benchmark ├── .eslintrc.json ├── README.md └── index.js ├── index.js ├── package.json ├── rollup.config.js ├── test ├── .eslintrc.json └── index.js ├── tsconfig.decl.cts.json ├── tsconfig.decl.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | node_modules 3 | 4 | # Generated 5 | dist 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/benchmark/.eslintrc.json -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/benchmark/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/rollup.config.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/test/index.js -------------------------------------------------------------------------------- /tsconfig.decl.cts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/tsconfig.decl.cts.json -------------------------------------------------------------------------------- /tsconfig.decl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/tsconfig.decl.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduth/memize/HEAD/tsconfig.json --------------------------------------------------------------------------------