@avstantso/core-toolkit 1.2.6 → 1.2.8
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/CHANGELOG.md +14 -0
- package/README.md +1 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [1.2.8] - 2026-07-05
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
|
|
8
|
+
- Updated `@avstantso/core` dependency (Add DeepOps)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## [1.2.7] - 2026-06-19
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Updated `@avstantso/core` dependency (Makes singleton idempotent for VM-reload. Like it need for Jest)
|
|
16
|
+
|
|
17
|
+
|
|
4
18
|
## [1.2.6] - 2026-02-05
|
|
5
19
|
|
|
6
20
|
### Changed
|
package/README.md
CHANGED
|
@@ -105,6 +105,7 @@ When you import `@avstantso/core-toolkit`, the following extensions are automati
|
|
|
105
105
|
|--------|-------------|
|
|
106
106
|
| `Object.definePropertyOnce(o, p, attrs)` | Adds a property only if it doesn't exist |
|
|
107
107
|
| `Object.definePropertiesOnce(o, props)` | Adds multiple properties, skipping existing ones |
|
|
108
|
+
| `Object.isPlainObject(o)` | Returns `true` if the object is a plain data object (prototype is `Object.prototype` or `null`) |
|
|
108
109
|
|
|
109
110
|
### Symbol Extensions (from `@avstantso/std-ext`)
|
|
110
111
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@avstantso/core-toolkit",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"author": "avstantso",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.8",
|
|
6
6
|
"description": "Complete toolkit combining core utilities, TS/JS helpers, and utility modules",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"toolkit",
|
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
"test": "NODE_ENV=test jest --coverage"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@avstantso/concepts": "1.
|
|
37
|
-
"@avstantso/core": "1.
|
|
38
|
-
"@avstantso/errors": "1.2.
|
|
39
|
-
"@avstantso/js": "1.2.
|
|
40
|
-
"@avstantso/std-ext": "1.2.
|
|
41
|
-
"@avstantso/ts": "1.3.
|
|
42
|
-
"@avstantso/utils-dialog": "1.2.
|
|
43
|
-
"@avstantso/utils-enum-class": "1.2.
|
|
44
|
-
"@avstantso/utils-enum-simple": "1.2.
|
|
45
|
-
"@avstantso/utils-flags-decorator": "1.2.
|
|
46
|
-
"@avstantso/utils-languages": "1.2.
|
|
47
|
-
"@avstantso/utils-locker": "1.2.
|
|
48
|
-
"@avstantso/utils-misc": "1.2.
|
|
49
|
-
"@avstantso/utils-names-tree": "1.3.
|
|
36
|
+
"@avstantso/concepts": "1.3.0",
|
|
37
|
+
"@avstantso/core": "1.3.0",
|
|
38
|
+
"@avstantso/errors": "1.2.4",
|
|
39
|
+
"@avstantso/js": "1.2.6",
|
|
40
|
+
"@avstantso/std-ext": "1.2.3",
|
|
41
|
+
"@avstantso/ts": "1.3.5",
|
|
42
|
+
"@avstantso/utils-dialog": "1.2.6",
|
|
43
|
+
"@avstantso/utils-enum-class": "1.2.6",
|
|
44
|
+
"@avstantso/utils-enum-simple": "1.2.6",
|
|
45
|
+
"@avstantso/utils-flags-decorator": "1.2.6",
|
|
46
|
+
"@avstantso/utils-languages": "1.2.6",
|
|
47
|
+
"@avstantso/utils-locker": "1.2.6",
|
|
48
|
+
"@avstantso/utils-misc": "1.2.7",
|
|
49
|
+
"@avstantso/utils-names-tree": "1.3.5"
|
|
50
50
|
}
|
|
51
51
|
}
|