(message)
| 492 | var _a; |
| 493 | var UndiciError = class extends Error { |
| 494 | constructor(message) { |
| 495 | super(message); |
| 496 | __publicField(this, _a, true); |
| 497 | this.name = "UndiciError"; |
| 498 | this.code = "UND_ERR"; |
| 499 | } |
| 500 | static [Symbol.hasInstance](instance) { |
| 501 | return instance && instance[kUndiciError] === true; |
| 502 | } |
nothing calls this directly
no test coverage detected