ohctechv3/.svn/pristine/7e/7e0831d89be9d045f9fb3cf9141de7967c616061.svn-base
2024-10-28 15:03:36 +05:30

13 lines
299 B
Plaintext

function BrowserslistError(message) {
this.name = 'BrowserslistError'
this.message = message
this.browserslist = true
if (Error.captureStackTrace) {
Error.captureStackTrace(this, BrowserslistError)
}
}
BrowserslistError.prototype = Error.prototype
module.exports = BrowserslistError