@emvu/react-scripts
Version:
Fork of configuration and scripts for Create React App.
14 lines (11 loc) • 294 B
JavaScript
module.exports = Object.setPrototypeOf || ({__proto__:[]} instanceof Array ? setProtoOf : mixinProperties);
function setProtoOf(obj, proto) {
obj.__proto__ = proto;
return obj;
}
function mixinProperties(obj, proto) {
for (var prop in proto) {
obj[prop] = proto[prop];
}
return obj;
}