Socket
Socket
Sign inDemoInstall

array-async

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    array-async

FuturesJS/ArrayAsync - The diet cola of asynchronous array utilities.


Version published
Weekly downloads
6
decreased by-40%
Maintainers
1
Install size
20.9 kB
Created
Weekly downloads
 

Readme

Source

ArrayAsync

v3.x - Diet Cola Edition

ArrayAsync provides asynchronous counterparts for each of the Array iterate methods

  • forEachAsync
  • everyAsync
  • someAsync
  • filterAsync
  • mapAsync
  • reduceAsync
  • reduceRightAsync* (uses reversed copy of original array)

Each of the other array methods is a thin (12-line long) wrapper around the diet (27-line long) forEachAsync, which is the core workhorse.

Where size is a concern and you don't need all 86 lines of code, I would invite you to simply look at the source and copy/paste what you need (and attribute, of course).

Browser Installation

bower install ArrayAsync
<script src="https://raw.github.com/FuturesJS/forEachAsync/master/forEachAsync.js"></script>
<script src="https://raw.github.com/FuturesJS/ArrayAsync/master/array-async.js"></script>
(function () {
  'use strict';

  var filterAsync = window.filterAsync
    ;

  filterAsync(['dogs', 'cats', 'octocats'], function (next, element) {
    askTheUserIfTheyLikeThis(element, function (likesIt) {
      next(likesIt);
    });
  }).then(function (newArr) {
    showTheUserThingsTheyLike(newArr);
  });
}());

Node Installation

npm install array-async
(function () {
  'use strict';

  var ArrayAsync = require('async-array').filterAsync
    ;

  filterAsync(['dogs', 'cats', 'octocats'], function (next, element) {
    askTheUserIfTheyLikeThis(element, function (likesIt) {
      next(likesIt);
    });
  }).then(function (newArr) {
    showTheUserThingsTheyLike(newArr);
  });
}());

Different Names for the Same Thing

I'm not sure which is the clear win yet:

Call each *Async function as needed

  var mapAsync = require('array-async').mapAsync
    ;

Use them attached to ArrayAsync object

  var ArrayAsync = require('array-async').ArrayAsync
    ;

  // Access each without the trailing 'Async'
  ArrayAsync.reduce(arr, fn);

Attach the async methods to Array

  require('array-async').infect(Array);

  Array.filterAsync(array, fn);

I've been the prototype route before... it was a bad idea.

Keywords

FAQs

Last updated on 13 Jan 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc