Skip to content

Releases: Mandala/setlist

Disable Resolve on Return

22 Nov 04:38
Compare
Choose a tag to compare

Disable auto-resolve functionality on return keyword. Any asynchronous function that need to be resolved before returning values can be accomplished by appending yield after return (e.g. return yield asyncFunctionHere())

Compatibility with Node.js v4

19 Nov 06:58
Compare
Choose a tag to compare

Compatible to use with Node.js v4 which does not support let keyword without explicit 'use strict' directive.

Rewrite Setlist from stratch

18 Nov 10:49
Compare
Choose a tag to compare

Implements new function such as promisify(), callbackify(), and proxify() (see README for details and usage), drop non-functioning timeout function in generator runner.