Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. somePromise
  2. .then(anySchema.findOne({}).exec)
  3. .then(function(d){
  4. //d is undefined
  5. })
  6.  
  7. somePromise
  8. .then(function () {
  9. return anySchema.findOne({}).exec()
  10. })
  11. .then(function(d){
  12. //d is null
  13. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement