node-array
Extending the array object for Node.js
Last updated 14 years ago .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install node-array 
SYNC missed versions from official npm registry.

node-array

Extending the array object for Node.js, to provide more methods and features to operate array object.

Features

Asynchronize forEach() Method:

var Array = require('node-array');

var a = [ 1, 2, 3, 4, 5 ];

a.forEachAsync(function(element, index, complete) {
        console.log(element);
}, function() {
        console.log('complete');
});

License

Licensed under the MIT License

Authors

Copyright(c) 2012 Fred Chien <cfsghost@gmail.com>

Current Tags

  • 0.0.7                                ...           latest (13 years ago)

7 Versions

  • 0.0.7                                ...           13 years ago
  • 0.0.6                                ...           13 years ago
  • 0.0.5                                ...           13 years ago
  • 0.0.4                                ...           13 years ago
  • 0.0.3                                ...           13 years ago
  • 0.0.2                                ...           14 years ago
  • 0.0.1                                ...           14 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 7
Last Day 0
Last Week 7
Last Month 0
Dependencies (0)
None
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |