genome 1.0.3 → 1.0.13
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/genome.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* @ts-self-types="./genome.d.ts" */
|
|
2
|
+
|
|
3
|
+
import * as wasm from "./genome_bg.wasm";
|
|
4
|
+
import { __wbg_set_wasm } from "./genome_bg.js";
|
|
5
|
+
__wbg_set_wasm(wasm);
|
|
6
|
+
wasm.__wbindgen_start();
|
|
7
|
+
export {
|
|
8
|
+
compare, compareValues, hash, hashStr, reset, seed, setConfig, signature
|
|
9
|
+
} from "./genome_bg.js";
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -5,20 +5,20 @@
|
|
|
5
5
|
"Michael Sweeney <overthemike@gmail.com>"
|
|
6
6
|
],
|
|
7
7
|
"description": "Deterministic structure ID generation for JavaScript objects using hierarchical hashing and collision-resistant algorithms",
|
|
8
|
-
"version": "1.0.
|
|
8
|
+
"version": "1.0.13",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"repository": "https://github.com/overthemike/genome.git",
|
|
11
11
|
"files": [
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
12
|
+
"genome_bg.wasm",
|
|
13
|
+
"genome.js",
|
|
14
|
+
"genome_bg.js",
|
|
15
|
+
"genome.d.ts"
|
|
16
16
|
],
|
|
17
|
-
"main": "
|
|
17
|
+
"main": "genome.js",
|
|
18
18
|
"homepage": "https://github.com/overthemike/genome",
|
|
19
|
-
"types": "
|
|
19
|
+
"types": "genome.d.ts",
|
|
20
20
|
"sideEffects": [
|
|
21
|
-
"./
|
|
21
|
+
"./genome.js",
|
|
22
22
|
"./snippets/*"
|
|
23
23
|
],
|
|
24
24
|
"keywords": [
|
package/genome_rs.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/* @ts-self-types="./genome_rs.d.ts" */
|
|
2
|
-
|
|
3
|
-
import * as wasm from "./genome_rs_bg.wasm";
|
|
4
|
-
import { __wbg_set_wasm } from "./genome_rs_bg.js";
|
|
5
|
-
__wbg_set_wasm(wasm);
|
|
6
|
-
wasm.__wbindgen_start();
|
|
7
|
-
export {
|
|
8
|
-
compare, compareValues, hash, hashStr, reset, seed, setConfig, signature
|
|
9
|
-
} from "./genome_rs_bg.js";
|
|
File without changes
|
|
File without changes
|