Guest User

Untitled

a guest
Mar 19th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. User.validate(user).catch(()=> {
  2. // ...
  3. })
  4.  
  5. try {
  6. await User.validate(user)
  7. } catch (error) {
  8. // ...
  9. }
Add Comment
Please, Sign In to add comment