Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function x () {
  2. return getThing.fn(...)
  3. .then(function (ret) {
  4. return function_that_returns_promise()
  5. })
  6. .then(function (events) {
  7. let results = generateDataPoints(...)
  8. res.status(200).json(results) // failing
  9. })
  10. .catch(function (err) {
  11. ...
  12. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement