lightweight generator/promise utility
$ npm install then-concur
Returns a wrapped function. It'll return a promise for the return value of the generator.
$('#button').click(Concur(function*() {
var data = yield $.ajax(url)
$('#result').html(data)
var status = $('#status').html('Download complete.')
yield status.fadeIn().promise()
yield sleep(2000)
status.fadeOut()
}))
Equivalent to Concur(fn)()
.
A shim that just passes yielded values back in. The synchronous analogue of Concur. Given a synchronous analogue of Concur and synchronous analogues of the other stuff you use, you can really easily implement sync and async versions of your code in one go. For an example, see mkdirp.js.
Equivalent to Sync(fn)()
.
ISC