Files
med-notes/.pnpm-store/v10/files/78/ce5b08c91bc8dbfce609990787c19fea042a467a3e3cc83d4c2c0f610436378f42374d7777c66b6dbf486f5a68e2137c983f0eff5967083f689eb317f93fea
2025-05-09 05:30:08 +02:00

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