Array.of

A robust & optimized ES3-compatible polyfill for the `Array.of` method in ECMAScript 6.

MIT License

Downloads
17.7K
Stars
15
Committers
4

array.of Version Badge

An ES2015 spec-compliant Array.of shim. Invoke its "shim" method to shim Array.of if it is unavailable or noncompliant.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

Most common usage:

var assert = require('assert');
var arrayOf = require('array.of');

assert.deepEqual(arrayOf(1, 2, 3), [1, 2, 3]);

if (!Array.of) {
	arrayOf.shim();
}

assert.deepEqual(Array.of(1, 2, 3), [1, 2, 3]);

Tests

Simply clone the repo, npm install, and run npm test

Author

twitter/mathias
Mathias Bynens
Package Rankings
Top 6.75% on Proxy.golang.org
Top 30.67% on Repo1.maven.org
Top 4.97% on Npmjs.org
Badges
Extracted from project README
Version Badge Build Status dependency status dev dependency status License Downloads npm badge twitter/mathias
Related Projects