Last active
February 15, 2021 22:18
-
-
Save amatiasq/5492466 to your computer and use it in GitHub Desktop.
Creates a copy of a object duplicating every property, even prototyped ones.
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
var extend = Object.getOwnPropertyNames ? | |
function ecma5extend(obj) { | |
var proto = obj; | |
var protos = []; | |
var result = {}; | |
var descriptors = {}; | |
while (proto) { | |
protos.push(proto); | |
proto = Object.getPrototypeOf(proto); | |
} | |
protos.reverse().forEach(function(ancestor) { | |
Object.getOwnPropertyNames(ancestor).forEach(function(prop) { | |
descriptors[prop] = Object.getOwnPropertyDescriptor(ancestor, prop); | |
}); | |
}); | |
Object.defineProperties(result, descriptors); | |
return result; | |
} : | |
function fallback(obj) { | |
var result = {}; | |
for (var i in obj) | |
result[i] = obj[i]; | |
return result; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment