├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── lib ├── index.cjs └── limax.mjs ├── package.json └── test ├── index.test-d.ts └── unit.cjs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/index.d.ts -------------------------------------------------------------------------------- /lib/index.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("./limax.cjs").default; 2 | -------------------------------------------------------------------------------- /lib/limax.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/lib/limax.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/package.json -------------------------------------------------------------------------------- /test/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/test/index.test-d.ts -------------------------------------------------------------------------------- /test/unit.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/limax/HEAD/test/unit.cjs --------------------------------------------------------------------------------