├── .github └── workflows │ └── nodeci.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src └── hsluv.ts ├── test ├── precision.mjs ├── snapshot-rev4.json └── test.mjs └── tsconfig.json /.github/workflows/nodeci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsluv/hsluv-javascript/HEAD/.github/workflows/nodeci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /assets 3 | /dist 4 | /test/tmp 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsluv/hsluv-javascript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsluv/hsluv-javascript/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsluv/hsluv-javascript/HEAD/package.json -------------------------------------------------------------------------------- /src/hsluv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsluv/hsluv-javascript/HEAD/src/hsluv.ts -------------------------------------------------------------------------------- /test/precision.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsluv/hsluv-javascript/HEAD/test/precision.mjs -------------------------------------------------------------------------------- /test/snapshot-rev4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsluv/hsluv-javascript/HEAD/test/snapshot-rev4.json -------------------------------------------------------------------------------- /test/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsluv/hsluv-javascript/HEAD/test/test.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsluv/hsluv-javascript/HEAD/tsconfig.json --------------------------------------------------------------------------------