├── .github └── workflows │ └── test-node.yml ├── .gitignore ├── LICENSE ├── README.md ├── bench.mjs ├── index.js ├── package.json └── test.mjs /.github/workflows/test-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/bogon/HEAD/.github/workflows/test-node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | sandbox.js 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/bogon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/bogon/HEAD/README.md -------------------------------------------------------------------------------- /bench.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/bogon/HEAD/bench.mjs -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/bogon/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/bogon/HEAD/package.json -------------------------------------------------------------------------------- /test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/bogon/HEAD/test.mjs --------------------------------------------------------------------------------