@base-framework/base 3.7.0 → 3.7.1
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/base.js +1 -1
- package/dist/base.js.map +3 -3
- package/dist/types/shared/objects.d.ts +2 -0
- package/package.json +1 -1
|
@@ -17,6 +17,8 @@ export namespace Objects {
|
|
|
17
17
|
function extendObject(sourceObj: object, targetObj: object): object | false;
|
|
18
18
|
/**
|
|
19
19
|
* Deep clones an object in a safe and scalable manner.
|
|
20
|
+
* Functions are silently omitted, matching the behaviour of the
|
|
21
|
+
* previous JSON.parse(JSON.stringify()) implementation.
|
|
20
22
|
*
|
|
21
23
|
* @param {object} obj - The object to clone.
|
|
22
24
|
* @returns {object} A deep clone of the object.
|