@dereekb/util 10.1.26 → 10.1.27
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/CHANGELOG.md +4 -0
- package/fetch/package.json +1 -1
- package/index.cjs.js +2 -2
- package/index.esm.js +2 -2
- package/package.json +1 -1
- package/test/CHANGELOG.md +4 -0
- package/test/package.json +1 -1
package/fetch/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [10.1.27](https://github.com/dereekb/dbx-components/compare/v10.1.26-dev...v10.1.27) (2024-09-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [10.1.26](https://github.com/dereekb/dbx-components/compare/v10.1.25-dev...v10.1.26) (2024-09-12)
|
|
6
10
|
|
|
7
11
|
|
package/fetch/package.json
CHANGED
package/index.cjs.js
CHANGED
|
@@ -7406,8 +7406,8 @@ function assignValuesToPOJOFunction(input = exports.KeyValueTypleValueFilter.UND
|
|
|
7406
7406
|
target[key] = value;
|
|
7407
7407
|
}
|
|
7408
7408
|
});
|
|
7409
|
-
const fn = (inputTarget, obj,
|
|
7410
|
-
const target =
|
|
7409
|
+
const fn = (inputTarget, obj, returnCopy = copy) => {
|
|
7410
|
+
const target = returnCopy ? Object.assign({}, inputTarget) : inputTarget;
|
|
7411
7411
|
assignEachValueToTarget(obj, target);
|
|
7412
7412
|
return target;
|
|
7413
7413
|
};
|
package/index.esm.js
CHANGED
|
@@ -8496,8 +8496,8 @@ function assignValuesToPOJOFunction(input = KeyValueTypleValueFilter.UNDEFINED)
|
|
|
8496
8496
|
target[key] = value;
|
|
8497
8497
|
}
|
|
8498
8498
|
});
|
|
8499
|
-
const fn = (inputTarget, obj,
|
|
8500
|
-
const target =
|
|
8499
|
+
const fn = (inputTarget, obj, returnCopy = copy) => {
|
|
8500
|
+
const target = returnCopy ? Object.assign({}, inputTarget) : inputTarget;
|
|
8501
8501
|
assignEachValueToTarget(obj, target);
|
|
8502
8502
|
return target;
|
|
8503
8503
|
};
|
package/package.json
CHANGED
package/test/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [10.1.27](https://github.com/dereekb/dbx-components/compare/v10.1.26-dev...v10.1.27) (2024-09-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [10.1.26](https://github.com/dereekb/dbx-components/compare/v10.1.25-dev...v10.1.26) (2024-09-12)
|
|
6
10
|
|
|
7
11
|
|