array-from
A ponyfill for the ES 2015 Array.from()
.
* Ponyfill: A polyfill that doesn't overwrite the native method.
* ES 2015: The new name for ES6 that nobody expected.
Modeled after the final ES 2015 spec. Credits for the implementation go to the amazing folks of the MDN and the amazing guy @barberboy.
Installation
$ npm install array-from
Usage
Recommended:
var arrayFrom = require('array-from');
function () {console.log(
arrayFrom(arguments).map(require('1-liners/increment'))
);}(1, 2, 3);
You can also use it as a classical polyfill. It’s not recommended, but sometimes practical:
if (!Array.from) Array.from = require('array-from');
function () {console.log(
Array.from(arguments).map(require('1-liners/increment'))
);}(1, 2, 3);
License
MIT © Studio B12 GmbH