@jdsalasc/solvejs-objects 1.5.1 → 1.5.2
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/README.md +8 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,9 +12,14 @@ Zero-dependency object utilities for JavaScript and TypeScript.
|
|
|
12
12
|
- `get`, `set`
|
|
13
13
|
- `deepMerge`
|
|
14
14
|
|
|
15
|
-
## When to use this package
|
|
16
|
-
|
|
17
|
-
Use it when you need consistent object shaping and nested path operations without pulling a larger utility library.
|
|
15
|
+
## When to use this package
|
|
16
|
+
|
|
17
|
+
Use it when you need consistent object shaping and nested path operations without pulling a larger utility library.
|
|
18
|
+
|
|
19
|
+
## Limitations and Constraints
|
|
20
|
+
|
|
21
|
+
- Path helpers currently support dot-separated string paths only.
|
|
22
|
+
- `deepMerge` merges plain objects and replaces arrays by design.
|
|
18
23
|
|
|
19
24
|
## Install
|
|
20
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jdsalasc/solvejs-objects",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Zero-dependency JavaScript/TypeScript object utilities for production: pick, omit, hasOwn, nested get/set by path, and deepMerge for config/state.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|