Guest User

Untitled

a guest
Nov 15th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. const CustomError = require('./CustomError')
  2.  
  3. const nativeError = new Error('ehqo')
  4.  
  5. const myErr = new CustomError('qweqwe')
  6.  
  7. console.log(nativeError.isCustomError) // undefined
  8. console.log(myErr.isCustomError) // true
Add Comment
Please, Sign In to add comment