mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-19 17:48:36 +00:00
12 lines
299 B
JavaScript
Vendored
12 lines
299 B
JavaScript
Vendored
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
|