1.0.2 • Published 7 years ago

callasync v1.0.2

Weekly downloads
964
License
MIT
Repository
github
Last release
7 years ago

callasync

npm version Build Status Coverage Status

Essential utility function that groups and calls functions asynchronously on the same tick respecting order of invocation.

Installation

$ npm install --save callasync

API

var callasync = require('callasync');

// both functions `foo()` and `bar()` will be
// called async but on a same tick

callasync(function foo() {
  // function body
});

callasync(function bar() {
  // function body
});

Running tests

$ npm install
$ npm test

License

MIT

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago