newnew
v0.0.1
Published
the `new` operator as a function; compliant with es5.1
Downloads
3
Readme
newnew
newnew
is the new new
.
What?
newnew
is a function that replaces the new
operator.
WHy??
newnew
inherits the first-class nature of functions, allowing you to do a couple of cool things that you never could with new
:
Application
var objects = [Object, Array, Function].map(newnew)
var o = newnew.apply(MyCtor, args)
Getting
It's as simple as an npm:
npm install newnew