Package Exports
- run-async
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (run-async) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Run Async
Utility method to run function either synchronously or asynchronously using the common this.async()
style.
This is useful for library author accepting sync or async functions as parameter. runAsync
will always run them as async method, and normalize the function handling.
Installation
npm install --save run-async
Usage
var runAsync = require('run-async');
// In Async mode:
var asyncFn = function (a) {
var done = this.async();
setTimeout(function () {
done('running: ' + a);
}, 10);
};
runAsync(asyncFn, function (answer) {
console.log(answer); // 'running: async'
}, 'async');
// In Sync mode:
var syncFn = function (a) {
return 'running: ' + a;
};
runAsync(asyncFn, function (answer) {
console.log(answer); // 'running: sync'
}, 'sync');
Licence
Copyright (c) 2014 Simon Boudrias (twitter: @vaxilart)
Licensed under the MIT license.