array icon indicating copy to clipboard operation
array copied to clipboard

A better array for the browser and node.js. Supports events & many functional goodies.

Results 9 array issues
Sort by recently updated
recently updated
newest added

#33 array _Originally posted by @Adil-IT in https://github.com/matthewmueller/array/issues/33#issuecomment-887836763_

Current version published at npm: 0.3.2 $ npm install [email protected] ``` npm http GET https://registry.npmjs.org/array.js/0.3.2 npm http 304 https://registry.npmjs.org/array.js/0.3.2 npm http GET https://registry.npmjs.org/emitter-component npm http 304 https://registry.npmjs.org/emitter-component npm ERR! Failed...

The README.md example code enticingly suggests chained array methods are possible ``` js users .map('friends') .select('age > 20 && age < 30') .map('name.first') .select(/^T/) ``` As a novice CoffeeScript and...

Example: ``` js List.prototype.array_remake = function(els) { return new this.constructor(els, this.selector); }) ```

Based on: http://stackoverflow.com/questions/12681003/how-to-empty-an-array-like-object-cross-browser-ie8