Skip to main content

Object.create

export function create(obj) {
const Fn = () => {};
Fn.prototype = obj;
return new Fn();
}