lychees's picture
Upload 569 files
87b3b3a
raw
history blame contribute delete
167 Bytes
if (!Object.create) {
/**
* ES5 Object.create
*/
Object.create = function(o) {
var tmp = function() {};
tmp.prototype = o;
return new tmp();
};
}