Releases: maoosi/wait.js
Releases · maoosi/wait.js
v3.0.0
Changelog
- The
new
keyword is not required anymore.new Wait()
changed toWait()
. - The
.handle()
function now directly return the context passed as first parameter.handle(this, () => {})
. - New approach for delay/pause with
.pause(this, milliseconds)
. - Async functions are now supported with
(done) => { done() }
. - Dev workflow moved from
Gulp
toRollup
. - Documentation enhancement.
- Automated tests added.