persona-community-5/.pnpm-store/v3/files/78/ce5b08c91bc8dbfce609990787c19fea042a467a3e3cc83d4c2c0f610436378f42374d7777c66b6dbf486f5a68e2137c983f0eff5967083f689eb317f93fea
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00: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