ICT30016-Assignment-3/node_modules/browserslist/error.js
dlawler489 a79a6afd34 intial
intial
2025-09-16 12:09:52 +10:00

12 lines
299 B
JavaScript

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