1.0.5 • Published 9 years ago
new-operator v1.0.5
new-operator
the new operator as a function
Rationale
This new inherits the first-class nature of functions, allowing you to do a couple of cool things that you never could with new.
That also gets you .apply(), even for native constructors.
Reflect.construct
ES2016 (aka ES6) provides Reflect.construct, which works similarly. We fall back to it for cases with over 20 arguments if available.
Installation
npm install new-operatorAPI
var new_ = require('new-operator')