Guest User

Untitled

a guest
Mar 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. // log error 42
  2. // process error 42
  3. Promise.reject(42)
  4. .tapCatch(x => console.log(`log error ${x}`))
  5. .catch(x => console.log(`process error ${x}`));
Add Comment
Please, Sign In to add comment