Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hash.cjs.prod.js 993B

1234567891011121314151617181920212223
  1. "use strict";
  2. function murmurhash2_32_gc(str) {
  3. for (var k, l = str.length, h = l ^ l, i = 0; l >= 4; ) k = 1540483477 * (65535 & (k = 255 & str.charCodeAt(i) | (255 & str.charCodeAt(++i)) << 8 | (255 & str.charCodeAt(++i)) << 16 | (255 & str.charCodeAt(++i)) << 24)) + ((1540483477 * (k >>> 16) & 65535) << 16),
  4. h = 1540483477 * (65535 & h) + ((1540483477 * (h >>> 16) & 65535) << 16) ^ (k = 1540483477 * (65535 & (k ^= k >>> 24)) + ((1540483477 * (k >>> 16) & 65535) << 16)),
  5. l -= 4, ++i;
  6. switch (l) {
  7. case 3:
  8. h ^= (255 & str.charCodeAt(i + 2)) << 16;
  9. case 2:
  10. h ^= (255 & str.charCodeAt(i + 1)) << 8;
  11. case 1:
  12. h = 1540483477 * (65535 & (h ^= 255 & str.charCodeAt(i))) + ((1540483477 * (h >>> 16) & 65535) << 16);
  13. }
  14. return h = 1540483477 * (65535 & (h ^= h >>> 13)) + ((1540483477 * (h >>> 16) & 65535) << 16),
  15. ((h ^= h >>> 15) >>> 0).toString(36);
  16. }
  17. Object.defineProperty(exports, "__esModule", {
  18. value: !0
  19. }), exports.default = murmurhash2_32_gc;