into

0.2.0 • Public • Published

into

Chainable async utilities for collections and arrays.

The backbone of this module is the async module. The problem this is trying to solve is easy chaining of these useful functional methods. This module also adds a few new methods based off ideas from lodash. Lodash is a very useful library, but it doesn't not allow you to perform async iterations.

At the end of each chain, you can add a then method which is based off of the Promises/A+ spec. It is not a real promise, but allows you to have a success and error method passed to it as arguments

install

npm install into --save

Usage

var into = require('into');
 
var list = [1, 2, 3];
 
into(list)
  .filter(function (item, next) {
    next(null, item < 3);
  })
  .map(function (item, next) {
    if (item === 1) next(null, 'one');
    if (item === 2) next (null, 'two');
  });
  .then(function (items) {
    // items will equal ['one', 'two'] now
  }, function (err) {
    // Something bad happend
  });

Methods

Collections

Arrays

Collections

where(object)

findWhere(object)

pluck(string)

Arrays

each(callback)

eachRight(callback)

map(callback)

filter(callback)

reject(callback)

some(callback)

every(callback)

reduce(memo, callback)

reduceRight(memo, callback)

sortBy(callback)

concat(callback)

Readme

Keywords

none

Package Sidebar

Install

npm i into

Weekly Downloads

2

Version

0.2.0

License

MIT

Last publish

Collaborators

  • scottcorgan