Function: deepClone()
deepClone<
ObjType>(source?,defaultValue?):ObjType
Defined in: src/common/web/utils/ObjectUtils.ts:43
Deep-clones an object.
Type Parameters
ObjType
ObjType = object
Parameters
source?
CloneObjectType
The source object; if this is undefined, the default value is used.
defaultValue?
CloneObjectType
The default value if the source is undefined.
Returns
ObjType