UNPKG

184 BJavaScriptView Raw
1/*
2object:create
3*/"use strict"
4
5var create = function(self){
6 var constructor = function(){}
7 constructor.prototype = self
8 return new constructor
9}
10
11module.exports = create