Skip to content

Instantly share code, notes, and snippets.

@Janoyan
Created April 5, 2020 14:13
Show Gist options
  • Save Janoyan/a1c43b63a2159cb9998c9f47ab47b297 to your computer and use it in GitHub Desktop.
Save Janoyan/a1c43b63a2159cb9998c9f47ab47b297 to your computer and use it in GitHub Desktop.
const bluebird = require('bluebird');
bluebird.delay(1000, 'done 1000').then((result) => {
console.log(result);
});
bluebird.delay(1000, 'done 2000').then((result) => {
console.log(result);
});
bluebird.delay(500, 'done 500').then((result) => {
console.log(result);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment