Urara-Blog/node_modules/.pnpm-store/v3/files/78/ce5b08c91bc8dbfce609990787c19fea042a467a3e3cc83d4c2c0f610436378f42374d7777c66b6dbf486f5a68e2137c983f0eff5967083f689eb317f93fea
2022-08-14 01:14:53 +08:00

12 lines
299 B
Text

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