You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
var isObj = require('./isObj'); |
|
exports = function(proto) { |
|
if (!isObj(proto)) return {}; |
|
if (objCreate && !false) return objCreate(proto); |
|
function noop() {} |
|
noop.prototype = proto; |
|
return new noop(); |
|
}; |
|
var objCreate = Object.create; |
|
|
|
module.exports = exports;
|
|
|