Advertisement
Guest User

Untitled

a guest
Apr 17th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var Promise = require('bluebird')
  2. function test () {
  3.   setImmediate(function(){console.log('setImmediate')})
  4.   Promise.try(function(){console.log('try')})
  5.   process.nextTick(function(){console.log('nextTick')})
  6.   console.log('end!')
  7. }
  8. test()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement