@dereekb/util 13.0.1 → 13.0.4
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/fetch/package.json +2 -2
- package/index.cjs.js +3 -1
- package/index.esm.js +3 -1
- package/package.json +1 -1
- package/src/lib/object/object.filter.pojo.d.ts +3 -1
- package/test/package.json +2 -2
package/fetch/package.json
CHANGED
package/index.cjs.js
CHANGED
|
@@ -5520,7 +5520,9 @@ function overrideInObjectFunctionFactory(param) {
|
|
|
5520
5520
|
};
|
|
5521
5521
|
}
|
|
5522
5522
|
/**
|
|
5523
|
-
* Merges all input objects into one.
|
|
5523
|
+
* Merges all input objects into one.
|
|
5524
|
+
*
|
|
5525
|
+
* The order of overrides is kept, so the right-most item in the array will have priority over all objects before it.
|
|
5524
5526
|
*
|
|
5525
5527
|
* @param objects
|
|
5526
5528
|
*/ function mergeObjects(objects, filter) {
|
package/index.esm.js
CHANGED
|
@@ -5518,7 +5518,9 @@ function overrideInObjectFunctionFactory(param) {
|
|
|
5518
5518
|
};
|
|
5519
5519
|
}
|
|
5520
5520
|
/**
|
|
5521
|
-
* Merges all input objects into one.
|
|
5521
|
+
* Merges all input objects into one.
|
|
5522
|
+
*
|
|
5523
|
+
* The order of overrides is kept, so the right-most item in the array will have priority over all objects before it.
|
|
5522
5524
|
*
|
|
5523
5525
|
* @param objects
|
|
5524
5526
|
*/ function mergeObjects(objects, filter) {
|
package/package.json
CHANGED
|
@@ -34,7 +34,9 @@ export interface OverrideInObjectFunctionFactoryConfig<T extends object> {
|
|
|
34
34
|
}
|
|
35
35
|
export declare function overrideInObjectFunctionFactory<T extends object>({ filter, copy, dynamic }: OverrideInObjectFunctionFactoryConfig<T>): OverrideInObjectFunctionFactory<T>;
|
|
36
36
|
/**
|
|
37
|
-
* Merges all input objects into one.
|
|
37
|
+
* Merges all input objects into one.
|
|
38
|
+
*
|
|
39
|
+
* The order of overrides is kept, so the right-most item in the array will have priority over all objects before it.
|
|
38
40
|
*
|
|
39
41
|
* @param objects
|
|
40
42
|
*/
|