├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── index.ts ├── package.json ├── test ├── test.cjs └── test.mjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/index.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/package.json -------------------------------------------------------------------------------- /test/test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/test/test.cjs -------------------------------------------------------------------------------- /test/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/test/test.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwarzkopfb/fnv1a/HEAD/tsconfig.json --------------------------------------------------------------------------------