This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function deepClone(source) { | |
| if (source instanceof Date) { | |
| return new Date(source.getTime()) | |
| } | |
| if (typeof source !== 'object' || source === null) { | |
| return source | |
| } | |
| let cloned = Array.isArray(source) ? [] : {} | |
| for (let key in source) { | |
| let value = source[key] |