Skip to content

1.0.0

Choose a tag to compare

@afc163 afc163 released this 21 Jul 11:14
· 55 commits to master since this release

Old:

var q = exeq([ ... ]);
q.on('done', function() { ... });
q.run();

Now:

exeq([ ... ]).on('done', function() { ... });