-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- copied from `default` mode - removes Set, Map, TypedArray support - has `dequal/lite` support parity
- Loading branch information
Showing
3 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,6 @@ node_modules | |
*-lock.* | ||
*.lock | ||
*.log | ||
dist | ||
|
||
/dist | ||
/lite |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
export function klona(x) { | ||
if (typeof x !== 'object') return x; | ||
|
||
var k, tmp, str=Object.prototype.toString.call(x); | ||
|
||
if (str === '[object Object]') { | ||
if (x.constructor !== Object && typeof x.constructor === 'function') { | ||
tmp = new x.constructor(); | ||
for (k in x) { | ||
if (tmp.hasOwnProperty(k) && tmp[k] !== x[k]) { | ||
tmp[k] = klona(x[k]); | ||
} | ||
} | ||
} else { | ||
tmp = {}; // null | ||
for (k in x) { | ||
if (k === '__proto__') { | ||
Object.defineProperty(tmp, k, { | ||
value: klona(x[k]), | ||
configurable: true, | ||
enumerable: true, | ||
writable: true, | ||
}); | ||
} else { | ||
tmp[k] = klona(x[k]); | ||
} | ||
} | ||
} | ||
return tmp; | ||
} | ||
|
||
if (str === '[object Array]') { | ||
k = x.length; | ||
for (tmp=Array(k); k--;) { | ||
tmp[k] = klona(x[k]); | ||
} | ||
return tmp; | ||
} | ||
|
||
if (str === '[object Date]') { | ||
return new Date(+x); | ||
} | ||
|
||
if (str === '[object RegExp]') { | ||
tmp = new RegExp(x.source, x.flags); | ||
tmp.lastIndex = x.lastIndex; | ||
return tmp; | ||
} | ||
|
||
return x; | ||
} |