@nordcraft/std-lib 1.0.18 → 1.0.19
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/lib.ts +3 -3
- package/package.json +4 -4
package/dist/lib.ts
CHANGED
|
@@ -923,7 +923,7 @@
|
|
|
923
923
|
},
|
|
924
924
|
"@toddle/fromEntries": {
|
|
925
925
|
"name": "From entries",
|
|
926
|
-
"description": "
|
|
926
|
+
"description": "Transform an Array of key-value pairs into an Object. This formula is the reverse of Entries.",
|
|
927
927
|
"arguments": [
|
|
928
928
|
{
|
|
929
929
|
"name": "Array",
|
|
@@ -931,14 +931,14 @@
|
|
|
931
931
|
"type": "value",
|
|
932
932
|
"value": null
|
|
933
933
|
},
|
|
934
|
-
"description": "
|
|
934
|
+
"description": "An Array of Objects. Each Object should have a `key` and `value` property named `key` and `value` respectively e.g. `[{ key: 'yourKey', value: 'yourValue' }]`.",
|
|
935
935
|
"type": {
|
|
936
936
|
"type": "Array"
|
|
937
937
|
}
|
|
938
938
|
}
|
|
939
939
|
],
|
|
940
940
|
"output": {
|
|
941
|
-
"description": "An Object containing all entries from the input Array
|
|
941
|
+
"description": "An Object containing all entries from the input Array in the format `{yourKey: yourValue}`.",
|
|
942
942
|
"type": {
|
|
943
943
|
"type": "Object"
|
|
944
944
|
}
|
package/package.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"homepage": "https://github.com/nordcraftengine/nordcraft",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"fast-deep-equal": "3.1.3",
|
|
8
|
-
"@nordcraft/core": "1.0.
|
|
8
|
+
"@nordcraft/core": "1.0.19"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@types/node": "22.15.
|
|
12
|
-
"@happy-dom/global-registrator": "17.
|
|
11
|
+
"@types/node": "22.15.23",
|
|
12
|
+
"@happy-dom/global-registrator": "17.5.6"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "bun ./bin/generate.js && tsc --project tsconfig.build.json",
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"watch": "tsc --noEmit -w"
|
|
19
19
|
},
|
|
20
20
|
"files": ["dist"],
|
|
21
|
-
"version": "1.0.
|
|
21
|
+
"version": "1.0.19"
|
|
22
22
|
}
|