dank-do-while
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

dank-do-while

An asynchronous do-while-like function for node

install

npm install dank-do-while

method

doWhile(eachFunction, doneFunction, concurrency);

eachFunction will be called once initially and then again for each time that next(truthy) is called

Signature is function(next)

doneFunction will be called once when next(falsy) is called

concurrency the number of concurrent eachFunction's that may be executed

example

import { doWhile } from 'dank-do-while';

doWhile(function (next) {	
	someAsyncFunction(function (err, result) {
		return next(result !== 'done');
	});
}, function () {
	console.log('done');
});

Readme

Keywords

Package Sidebar

Install

npm i dank-do-while

Weekly Downloads

2,796

Version

1.0.1

License

MIT

Unpacked Size

70.8 kB

Total Files

7

Last publish

Collaborators

  • wankdanker