Spaces:
Running
Running
File size: 167 Bytes
87b3b3a |
1 2 3 4 5 6 7 8 9 10 11 |
if (!Object.create) {
/**
* ES5 Object.create
*/
Object.create = function(o) {
var tmp = function() {};
tmp.prototype = o;
return new tmp();
};
}
|