Caches all JS array constructors at require time.
Using NPM:
$ npm install es-arraysUsing Yarn:
$ yarn add es-arraysSimply require and the array constructors are properties of what is exported.
var arrays = require('es-arrays')
console.log(arrays.Array); // [Function: Array]Feel free to file issues or pull requests on the GitHub page.