├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── benchmark.cjs ├── lib └── index.ts ├── package.json ├── test └── index.test.ts ├── tsconfig.json └── vite.config.mjs /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/wecs/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/wecs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/wecs/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/wecs/HEAD/benchmark.cjs -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/wecs/HEAD/lib/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/wecs/HEAD/package.json -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/wecs/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/wecs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/wecs/HEAD/vite.config.mjs --------------------------------------------------------------------------------