123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- "use strict";
- const FNV_64_THRESHOLD = 1 << 24;
- const FNV_OFFSET_32 = 2166136261;
- const FNV_PRIME_32 = 16777619;
- const MASK_31 = 0x7fffffff;
- const FNV_OFFSET_64 = BigInt("0xCBF29CE484222325");
- const FNV_PRIME_64 = BigInt("0x100000001B3");
- function fnv1a32(str) {
- let hash = FNV_OFFSET_32;
- for (let i = 0, len = str.length; i < len; i++) {
- hash ^= str.charCodeAt(i);
-
- hash = Math.imul(hash, FNV_PRIME_32);
- }
-
- return hash & MASK_31;
- }
- function fnv1a64(str) {
- let hash = FNV_OFFSET_64;
- for (let i = 0, len = str.length; i < len; i++) {
- hash ^= BigInt(str.charCodeAt(i));
- hash = BigInt.asUintN(64, hash * FNV_PRIME_64);
- }
- return hash;
- }
- module.exports = (str, range) => {
- if (range < FNV_64_THRESHOLD) {
- return fnv1a32(str) % range;
- } else {
- return Number(fnv1a64(str) % BigInt(range));
- }
- };
|