├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── bench ├── bench.js └── package.json ├── biome.json ├── index.d.ts ├── index.js ├── index.test-d.ts ├── package.json ├── platform.js ├── src ├── CPPLINT.cfg ├── binding.gyp ├── bindings.cc └── upstream │ ├── farmhash.cc │ └── farmhash.h └── test └── unit.js /.gitattributes: -------------------------------------------------------------------------------- 1 | src/upstream/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build 3 | node_modules 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/README.md -------------------------------------------------------------------------------- /bench/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/bench/bench.js -------------------------------------------------------------------------------- /bench/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/bench/package.json -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/biome.json -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/index.js -------------------------------------------------------------------------------- /index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/index.test-d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/package.json -------------------------------------------------------------------------------- /platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/platform.js -------------------------------------------------------------------------------- /src/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | set noparent 2 | 3 | linelength=120 4 | -------------------------------------------------------------------------------- /src/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/src/binding.gyp -------------------------------------------------------------------------------- /src/bindings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/src/bindings.cc -------------------------------------------------------------------------------- /src/upstream/farmhash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/src/upstream/farmhash.cc -------------------------------------------------------------------------------- /src/upstream/farmhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/src/upstream/farmhash.h -------------------------------------------------------------------------------- /test/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovell/farmhash/HEAD/test/unit.js --------------------------------------------------------------------------------