Simple shim for ECMAScript 5 Object.create
Install Component:
npm install -g component
Then:
component install gamtiq/object-create-shim
var create = require("object-create-shim");
...
var obj1 = Object.create(someParent1);
var obj2 = create(someParent2);
MIT