├── .github └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── Readme.md ├── faq ├── non-unique.js ├── non-unique.md ├── render ├── when-hlc.js ├── when-hlc.md ├── why-96bit.js └── why-96bit.md ├── index.d.ts ├── index.js ├── package.json └── test.js /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | coverage 3 | package-lock.json 4 | *.tgz 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github 2 | .nyc_output 3 | .gitignore 4 | coverage 5 | faq 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/Readme.md -------------------------------------------------------------------------------- /faq/non-unique.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/faq/non-unique.js -------------------------------------------------------------------------------- /faq/non-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/faq/non-unique.md -------------------------------------------------------------------------------- /faq/render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/faq/render -------------------------------------------------------------------------------- /faq/when-hlc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/faq/when-hlc.js -------------------------------------------------------------------------------- /faq/when-hlc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/faq/when-hlc.md -------------------------------------------------------------------------------- /faq/why-96bit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/faq/why-96bit.js -------------------------------------------------------------------------------- /faq/why-96bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/faq/why-96bit.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/consento-org/hlc/HEAD/test.js --------------------------------------------------------------------------------