timetracker/frontend/node_modules/browserslist/error.js
hhftechnologies c8f5379289 update
2024-11-25 23:16:17 +05:30

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