@alwatr/cyrb53 1.0.16 โ†’ 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.js ADDED
@@ -0,0 +1,5 @@
1
+ /* ๐Ÿ“ฆ @alwatr/cyrb53 v2.0.0 */
2
+ function F(C,D=0){let j=3735928559^D,k=1103547991^D;for(let z=0,B;z<C.length;z++)B=C.charCodeAt(z),j=Math.imul(j^B,2654435761),k=Math.imul(k^B,1597334677);return j=Math.imul(j^j>>>16,2246822507),j^=Math.imul(k^k>>>13,3266489909),k=Math.imul(k^k>>>16,2246822507),k^=Math.imul(j^j>>>13,3266489909),4294967296*(2097151&k)+(j>>>0)}export{F as cyrb53};
3
+
4
+ //# debugId=28949D227878B7D364756E2164756E21
5
+ //# sourceMappingURL=main.js.map
@@ -0,0 +1,10 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../src/main.ts"],
4
+ "sourcesContent": [
5
+ "const H1_SEED = 0xdeadbeef;\nconst H2_SEED = 0x41c6ce57;\nconst M_K1 = 2654435761;\nconst M_K2 = 1597334677;\nconst F_K1 = 2246822507;\nconst F_K2 = 3266489909;\nconst P_K1 = 4294967296; // 2^32\nconst P_K2 = 2097151; // 2^21 - 1\n\n/**\n * cyrb53: A modern, high-quality, and fast 53-bit string hash function.\n *\n * Excellent collision resistance due to its large output space.\n * The best choice for new general-purpose hashing needs in JS/TS.\n *\n * @param str The input string.\n * @param seed An optional seed value.\n * @returns A 53-bit hash number.\n *\n * @example\n * ```ts\n * const hash = cyrb53('some string');\n * ```\n */\nexport function cyrb53(str: string, seed = 0): number {\n let h1 = H1_SEED ^ seed;\n let h2 = H2_SEED ^ seed;\n\n for (let i = 0, ch; i < str.length; i++) {\n ch = str.charCodeAt(i);\n h1 = Math.imul(h1 ^ ch, M_K1);\n h2 = Math.imul(h2 ^ ch, M_K2);\n }\n\n h1 = Math.imul(h1 ^ (h1 >>> 16), F_K1);\n h1 ^= Math.imul(h2 ^ (h2 >>> 13), F_K2);\n h2 = Math.imul(h2 ^ (h2 >>> 16), F_K1);\n h2 ^= Math.imul(h1 ^ (h1 >>> 13), F_K2);\n\n return P_K1 * (P_K2 & h2) + (h1 >>> 0);\n}\n"
6
+ ],
7
+ "mappings": ";AAwBO,SAAS,CAAM,CAAC,EAAa,EAAO,EAAW,CACpD,IAAI,EAzBU,WAyBK,EACf,EAzBU,WAyBK,EAEnB,QAAS,EAAI,EAAG,EAAI,EAAI,EAAI,OAAQ,IAClC,EAAK,EAAI,WAAW,CAAC,EACrB,EAAK,KAAK,KAAK,EAAK,EA5BX,UA4BmB,EAC5B,EAAK,KAAK,KAAK,EAAK,EA5BX,UA4BmB,EAQ9B,OALA,EAAK,KAAK,KAAK,EAAM,IAAO,GA9BjB,UA8B0B,EACrC,GAAM,KAAK,KAAK,EAAM,IAAO,GA9BlB,UA8B2B,EACtC,EAAK,KAAK,KAAK,EAAM,IAAO,GAhCjB,UAgC0B,EACrC,GAAM,KAAK,KAAK,EAAM,IAAO,GAhClB,UAgC2B,EA/B3B,YACA,QAgCW,IAAO,IAAO",
8
+ "debugId": "28949D227878B7D364756E2164756E21",
9
+ "names": []
10
+ }
package/package.json CHANGED
@@ -1,26 +1,25 @@
1
1
  {
2
2
  "name": "@alwatr/cyrb53",
3
3
  "description": "A modern, high-quality, and fast 53-bit string hash function.",
4
- "version": "1.0.16",
4
+ "version": "2.0.0",
5
5
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
6
  "bugs": "https://github.com/Alwatr/nanolib/issues",
7
7
  "devDependencies": {
8
- "@alwatr/nano-build": "6.4.1",
9
- "@alwatr/prettier-config": "6.0.2",
10
- "@alwatr/tsconfig-base": "6.0.4",
11
- "@alwatr/type-helper": "7.0.1",
12
- "@jest/globals": "^30.2.0",
8
+ "@alwatr/nano-build": "7.0.0",
9
+ "@alwatr/prettier-config": "7.0.0",
10
+ "@alwatr/tsconfig-base": "7.0.0",
11
+ "@alwatr/type-helper": "8.0.0",
13
12
  "typescript": "^5.9.3"
14
13
  },
15
14
  "exports": {
16
15
  ".": {
17
16
  "types": "./dist/main.d.ts",
18
- "import": "./dist/main.mjs",
19
- "require": "./dist/main.cjs"
17
+ "default": "./dist/main.js"
20
18
  }
21
19
  },
22
20
  "files": [
23
- "**/*.{js,mjs,cjs,map,d.ts,html,md,LEGAL.txt}",
21
+ "**/*.{js,mjs,cjs,ts,map,d.ts,html,LEGAL.txt}",
22
+ "README.md",
24
23
  "LICENSE",
25
24
  "!demo/**/*",
26
25
  "!**/*.test.js"
@@ -34,8 +33,6 @@
34
33
  "string"
35
34
  ],
36
35
  "license": "MPL-2.0",
37
- "main": "./dist/main.cjs",
38
- "module": "./dist/main.mjs",
39
36
  "prettier": "@alwatr/prettier-config",
40
37
  "publishConfig": {
41
38
  "access": "public"
@@ -46,21 +43,21 @@
46
43
  "directory": "packages/cyrb53"
47
44
  },
48
45
  "scripts": {
49
- "b": "yarn run build",
50
- "build": "yarn run build:ts && yarn run build:es",
51
- "build:es": "nano-build --preset=module",
46
+ "b": "bun run build",
47
+ "build": "bun run build:ts && bun run build:es",
48
+ "build:es": "nano-build --preset=module src/main.ts",
52
49
  "build:ts": "tsc --build",
53
- "c": "yarn run clean",
54
- "cb": "yarn run clean && yarn run build",
50
+ "c": "bun run clean",
51
+ "cb": "bun run clean && bun run build",
55
52
  "clean": "rm -rfv dist *.tsbuildinfo",
56
- "d": "yarn run build:es && yarn node --enable-source-maps --trace-warnings",
57
- "w": "yarn run watch",
58
- "watch": "yarn run watch:ts & yarn run watch:es",
59
- "watch:es": "yarn run build:es --watch",
60
- "watch:ts": "yarn run build:ts --watch --preserveWatchOutput"
53
+ "d": "bun run build:es && bun",
54
+ "w": "bun run watch",
55
+ "watch": "bun run watch:ts & bun run watch:es",
56
+ "watch:es": "bun run build:es --watch",
57
+ "watch:ts": "bun run build:ts --watch --preserveWatchOutput"
61
58
  },
62
59
  "sideEffects": false,
63
60
  "type": "module",
64
61
  "types": "./dist/main.d.ts",
65
- "gitHead": "f9f9ba54b319ce8ccc6968059b222e89f4b5d149"
62
+ "gitHead": "056102a1c8a563bbae8a290b6830450f467322a3"
66
63
  }
package/src/main.ts ADDED
@@ -0,0 +1,41 @@
1
+ const H1_SEED = 0xdeadbeef;
2
+ const H2_SEED = 0x41c6ce57;
3
+ const M_K1 = 2654435761;
4
+ const M_K2 = 1597334677;
5
+ const F_K1 = 2246822507;
6
+ const F_K2 = 3266489909;
7
+ const P_K1 = 4294967296; // 2^32
8
+ const P_K2 = 2097151; // 2^21 - 1
9
+
10
+ /**
11
+ * cyrb53: A modern, high-quality, and fast 53-bit string hash function.
12
+ *
13
+ * Excellent collision resistance due to its large output space.
14
+ * The best choice for new general-purpose hashing needs in JS/TS.
15
+ *
16
+ * @param str The input string.
17
+ * @param seed An optional seed value.
18
+ * @returns A 53-bit hash number.
19
+ *
20
+ * @example
21
+ * ```ts
22
+ * const hash = cyrb53('some string');
23
+ * ```
24
+ */
25
+ export function cyrb53(str: string, seed = 0): number {
26
+ let h1 = H1_SEED ^ seed;
27
+ let h2 = H2_SEED ^ seed;
28
+
29
+ for (let i = 0, ch; i < str.length; i++) {
30
+ ch = str.charCodeAt(i);
31
+ h1 = Math.imul(h1 ^ ch, M_K1);
32
+ h2 = Math.imul(h2 ^ ch, M_K2);
33
+ }
34
+
35
+ h1 = Math.imul(h1 ^ (h1 >>> 16), F_K1);
36
+ h1 ^= Math.imul(h2 ^ (h2 >>> 13), F_K2);
37
+ h2 = Math.imul(h2 ^ (h2 >>> 16), F_K1);
38
+ h2 ^= Math.imul(h1 ^ (h1 >>> 13), F_K2);
39
+
40
+ return P_K1 * (P_K2 & h2) + (h1 >>> 0);
41
+ }
package/CHANGELOG.md DELETED
@@ -1,108 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [1.0.16](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.15...@alwatr/cyrb53@1.0.16) (2026-02-18)
7
-
8
- **Note:** Version bump only for package @alwatr/cyrb53
9
-
10
- ## [1.0.15](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.14...@alwatr/cyrb53@1.0.15) (2025-12-23)
11
-
12
- **Note:** Version bump only for package @alwatr/cyrb53
13
-
14
- ## [1.0.14](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.13...@alwatr/cyrb53@1.0.14) (2025-12-13)
15
-
16
- **Note:** Version bump only for package @alwatr/cyrb53
17
-
18
- ## [1.0.13](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.12...@alwatr/cyrb53@1.0.13) (2025-12-10)
19
-
20
- **Note:** Version bump only for package @alwatr/cyrb53
21
-
22
- ## [1.0.12](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.11...@alwatr/cyrb53@1.0.12) (2025-11-18)
23
-
24
- ### ๐Ÿ”จ Code Refactoring
25
-
26
- * remove unnecessary type declarations from tsconfig.json files ([89bcc7d](https://github.com/Alwatr/nanolib/commit/89bcc7db839807110b80f8ba34414ea9734d9c75))
27
-
28
- ## [1.0.11](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.10...@alwatr/cyrb53@1.0.11) (2025-11-15)
29
-
30
- **Note:** Version bump only for package @alwatr/cyrb53
31
-
32
- ## [1.0.10](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.9...@alwatr/cyrb53@1.0.10) (2025-11-15)
33
-
34
- **Note:** Version bump only for package @alwatr/cyrb53
35
-
36
- ## [1.0.9](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.8...@alwatr/cyrb53@1.0.9) (2025-11-04)
37
-
38
- **Note:** Version bump only for package @alwatr/cyrb53
39
-
40
- ## [1.0.8](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.7...@alwatr/cyrb53@1.0.8) (2025-10-06)
41
-
42
- ### ๐Ÿ”— Dependencies update
43
-
44
- * bump the npm-dependencies group with 4 updates ([9825815](https://github.com/Alwatr/nanolib/commit/982581552bbb4b97dca52af5e93a80937f0c3109))
45
-
46
- ## [1.0.7](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.6...@alwatr/cyrb53@1.0.7) (2025-09-27)
47
-
48
- ### ๐Ÿงน Miscellaneous Chores
49
-
50
- * exclude test files from package distribution ([86f4f2f](https://github.com/Alwatr/nanolib/commit/86f4f2f5985845c5cf3a3a9398de7b2f98ce53e7))
51
-
52
- ## [1.0.6](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.5...@alwatr/cyrb53@1.0.6) (2025-09-22)
53
-
54
- **Note:** Version bump only for package @alwatr/cyrb53
55
-
56
- ## [1.0.5](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.4...@alwatr/cyrb53@1.0.5) (2025-09-22)
57
-
58
- **Note:** Version bump only for package @alwatr/cyrb53
59
-
60
- ## [1.0.4](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.3...@alwatr/cyrb53@1.0.4) (2025-09-21)
61
-
62
- **Note:** Version bump only for package @alwatr/cyrb53
63
-
64
- ## [1.0.3](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.2...@alwatr/cyrb53@1.0.3) (2025-09-20)
65
-
66
- ### ๐Ÿ› Bug Fixes
67
-
68
- * add sideEffects property to package.json files for better tree-shaking ([c7b9e74](https://github.com/Alwatr/nanolib/commit/c7b9e74e1920c8e35b438742de61883ca62da58c))
69
- * add sideEffects property to package.json files for better tree-shaking ([e8402c4](https://github.com/Alwatr/nanolib/commit/e8402c481a14a1f807a37aaa862a936713d26176))
70
-
71
- ### ๐Ÿงน Miscellaneous Chores
72
-
73
- * remove duplicate sideEffects property from multiple package.json files ([b123f86](https://github.com/Alwatr/nanolib/commit/b123f86be81481de2314aae9bb2eeb629743d24c))
74
-
75
- ## [1.0.2](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.1...@alwatr/cyrb53@1.0.2) (2025-09-19)
76
-
77
- **Note:** Version bump only for package @alwatr/cyrb53
78
-
79
- ## [1.0.1](https://github.com/Alwatr/nanolib/compare/@alwatr/cyrb53@1.0.0...@alwatr/cyrb53@1.0.1) (2025-09-15)
80
-
81
- **Note:** Version bump only for package @alwatr/cyrb53
82
-
83
- ## 1.0.0 (2025-09-14)
84
-
85
- ### โœจ Features
86
-
87
- * **cyrb53:** add new package for cyrb53 hash function ([59d2096](https://github.com/Alwatr/nanolib/commit/59d2096409ac143d42f8b4d8bb38efeaf9d3ce06))
88
-
89
- ### ๐Ÿ”จ Code Refactoring
90
-
91
- * replace magic numbers with constants in cyrb53 function ([943c79d](https://github.com/Alwatr/nanolib/commit/943c79d64733ca2d1a4ce4a729bf99481eaf6773))
92
-
93
- ### ๐Ÿงน Miscellaneous Chores
94
-
95
- * **package:** fix version to 1.0.0-rc and reorder keywords in package.json ([e9c4802](https://github.com/Alwatr/nanolib/commit/e9c4802e1b735eae245122353d1197ec00cad865))
96
-
97
- # Changelog
98
-
99
- All notable changes to this project will be documented in this file.
100
-
101
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
102
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
103
-
104
- ## [1.0.0](https://github.com/Alwatr/nanolib/compare/v0.0.0...v1.0.0) (2024-03-08)
105
-
106
- ### Features
107
-
108
- - **cyrb53:** initial implementation and package structure.
package/dist/main.cjs DELETED
@@ -1,4 +0,0 @@
1
- /** ๐Ÿ“ฆ @alwatr/cyrb53 v1.0.16 */
2
- __dev_mode__: console.debug("๐Ÿ“ฆ @alwatr/cyrb53 v1.0.16");
3
- "use strict";var __defProp=Object.defineProperty;var __getOwnPropDesc=Object.getOwnPropertyDescriptor;var __getOwnPropNames=Object.getOwnPropertyNames;var __hasOwnProp=Object.prototype.hasOwnProperty;var __export=(target,all)=>{for(var name in all)__defProp(target,name,{get:all[name],enumerable:true})};var __copyProps=(to,from,except,desc)=>{if(from&&typeof from==="object"||typeof from==="function"){for(let key of __getOwnPropNames(from))if(!__hasOwnProp.call(to,key)&&key!==except)__defProp(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc(from,key))||desc.enumerable})}return to};var __toCommonJS=mod=>__copyProps(__defProp({},"__esModule",{value:true}),mod);var main_exports={};__export(main_exports,{cyrb53:()=>cyrb53});module.exports=__toCommonJS(main_exports);var H1_SEED=3735928559;var H2_SEED=1103547991;var M_K1=2654435761;var M_K2=1597334677;var F_K1=2246822507;var F_K2=3266489909;var P_K1=4294967296;var P_K2=2097151;function cyrb53(str,seed=0){let h1=H1_SEED^seed;let h2=H2_SEED^seed;for(let i=0,ch;i<str.length;i++){ch=str.charCodeAt(i);h1=Math.imul(h1^ch,M_K1);h2=Math.imul(h2^ch,M_K2)}h1=Math.imul(h1^h1>>>16,F_K1);h1^=Math.imul(h2^h2>>>13,F_K2);h2=Math.imul(h2^h2>>>16,F_K1);h2^=Math.imul(h1^h1>>>13,F_K2);return P_K1*(P_K2&h2)+(h1>>>0)}0&&(module.exports={cyrb53});
4
- //# sourceMappingURL=main.cjs.map
package/dist/main.cjs.map DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../src/main.ts"],
4
- "sourcesContent": ["const H1_SEED = 0xdeadbeef;\nconst H2_SEED = 0x41c6ce57;\nconst M_K1 = 2654435761;\nconst M_K2 = 1597334677;\nconst F_K1 = 2246822507;\nconst F_K2 = 3266489909;\nconst P_K1 = 4294967296; // 2^32\nconst P_K2 = 2097151; // 2^21 - 1\n\n/**\n * cyrb53: A modern, high-quality, and fast 53-bit string hash function.\n *\n * Excellent collision resistance due to its large output space.\n * The best choice for new general-purpose hashing needs in JS/TS.\n *\n * @param str The input string.\n * @param seed An optional seed value.\n * @returns A 53-bit hash number.\n *\n * @example\n * ```ts\n * const hash = cyrb53('some string');\n * ```\n */\nexport function cyrb53(str: string, seed = 0): number {\n let h1 = H1_SEED ^ seed;\n let h2 = H2_SEED ^ seed;\n\n for (let i = 0, ch; i < str.length; i++) {\n ch = str.charCodeAt(i);\n h1 = Math.imul(h1 ^ ch, M_K1);\n h2 = Math.imul(h2 ^ ch, M_K2);\n }\n\n h1 = Math.imul(h1 ^ (h1 >>> 16), F_K1);\n h1 ^= Math.imul(h2 ^ (h2 >>> 13), F_K2);\n h2 = Math.imul(h2 ^ (h2 >>> 16), F_K1);\n h2 ^= Math.imul(h1 ^ (h1 >>> 13), F_K2);\n\n return P_K1 * (P_K2 & h2) + (h1 >>> 0);\n}\n"],
5
- "mappings": ";;qqBAAA,6GAAM,QAAU,WAChB,IAAM,QAAU,WAChB,IAAM,KAAO,WACb,IAAM,KAAO,WACb,IAAM,KAAO,WACb,IAAM,KAAO,WACb,IAAM,KAAO,WACb,IAAM,KAAO,QAiBN,SAAS,OAAO,IAAa,KAAO,EAAW,CACpD,IAAI,GAAK,QAAU,KACnB,IAAI,GAAK,QAAU,KAEnB,QAAS,EAAI,EAAG,GAAI,EAAI,IAAI,OAAQ,IAAK,CACvC,GAAK,IAAI,WAAW,CAAC,EACrB,GAAK,KAAK,KAAK,GAAK,GAAI,IAAI,EAC5B,GAAK,KAAK,KAAK,GAAK,GAAI,IAAI,CAC9B,CAEA,GAAK,KAAK,KAAK,GAAM,KAAO,GAAK,IAAI,EACrC,IAAM,KAAK,KAAK,GAAM,KAAO,GAAK,IAAI,EACtC,GAAK,KAAK,KAAK,GAAM,KAAO,GAAK,IAAI,EACrC,IAAM,KAAK,KAAK,GAAM,KAAO,GAAK,IAAI,EAEtC,OAAO,MAAQ,KAAO,KAAO,KAAO,EACtC",
6
- "names": []
7
- }
package/dist/main.mjs DELETED
@@ -1,4 +0,0 @@
1
- /** ๐Ÿ“ฆ @alwatr/cyrb53 v1.0.16 */
2
- __dev_mode__: console.debug("๐Ÿ“ฆ @alwatr/cyrb53 v1.0.16");
3
- var H1_SEED=3735928559;var H2_SEED=1103547991;var M_K1=2654435761;var M_K2=1597334677;var F_K1=2246822507;var F_K2=3266489909;var P_K1=4294967296;var P_K2=2097151;function cyrb53(str,seed=0){let h1=H1_SEED^seed;let h2=H2_SEED^seed;for(let i=0,ch;i<str.length;i++){ch=str.charCodeAt(i);h1=Math.imul(h1^ch,M_K1);h2=Math.imul(h2^ch,M_K2)}h1=Math.imul(h1^h1>>>16,F_K1);h1^=Math.imul(h2^h2>>>13,F_K2);h2=Math.imul(h2^h2>>>16,F_K1);h2^=Math.imul(h1^h1>>>13,F_K2);return P_K1*(P_K2&h2)+(h1>>>0)}export{cyrb53};
4
- //# sourceMappingURL=main.mjs.map
package/dist/main.mjs.map DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../src/main.ts"],
4
- "sourcesContent": ["const H1_SEED = 0xdeadbeef;\nconst H2_SEED = 0x41c6ce57;\nconst M_K1 = 2654435761;\nconst M_K2 = 1597334677;\nconst F_K1 = 2246822507;\nconst F_K2 = 3266489909;\nconst P_K1 = 4294967296; // 2^32\nconst P_K2 = 2097151; // 2^21 - 1\n\n/**\n * cyrb53: A modern, high-quality, and fast 53-bit string hash function.\n *\n * Excellent collision resistance due to its large output space.\n * The best choice for new general-purpose hashing needs in JS/TS.\n *\n * @param str The input string.\n * @param seed An optional seed value.\n * @returns A 53-bit hash number.\n *\n * @example\n * ```ts\n * const hash = cyrb53('some string');\n * ```\n */\nexport function cyrb53(str: string, seed = 0): number {\n let h1 = H1_SEED ^ seed;\n let h2 = H2_SEED ^ seed;\n\n for (let i = 0, ch; i < str.length; i++) {\n ch = str.charCodeAt(i);\n h1 = Math.imul(h1 ^ ch, M_K1);\n h2 = Math.imul(h2 ^ ch, M_K2);\n }\n\n h1 = Math.imul(h1 ^ (h1 >>> 16), F_K1);\n h1 ^= Math.imul(h2 ^ (h2 >>> 13), F_K2);\n h2 = Math.imul(h2 ^ (h2 >>> 16), F_K1);\n h2 ^= Math.imul(h1 ^ (h1 >>> 13), F_K2);\n\n return P_K1 * (P_K2 & h2) + (h1 >>> 0);\n}\n"],
5
- "mappings": ";;AAAA,IAAM,QAAU,WAChB,IAAM,QAAU,WAChB,IAAM,KAAO,WACb,IAAM,KAAO,WACb,IAAM,KAAO,WACb,IAAM,KAAO,WACb,IAAM,KAAO,WACb,IAAM,KAAO,QAiBN,SAAS,OAAO,IAAa,KAAO,EAAW,CACpD,IAAI,GAAK,QAAU,KACnB,IAAI,GAAK,QAAU,KAEnB,QAAS,EAAI,EAAG,GAAI,EAAI,IAAI,OAAQ,IAAK,CACvC,GAAK,IAAI,WAAW,CAAC,EACrB,GAAK,KAAK,KAAK,GAAK,GAAI,IAAI,EAC5B,GAAK,KAAK,KAAK,GAAK,GAAI,IAAI,CAC9B,CAEA,GAAK,KAAK,KAAK,GAAM,KAAO,GAAK,IAAI,EACrC,IAAM,KAAK,KAAK,GAAM,KAAO,GAAK,IAAI,EACtC,GAAK,KAAK,KAAK,GAAM,KAAO,GAAK,IAAI,EACrC,IAAM,KAAK,KAAK,GAAM,KAAO,GAAK,IAAI,EAEtC,OAAO,MAAQ,KAAO,KAAO,KAAO,EACtC",
6
- "names": []
7
- }