(message, options)
| 16 | __name(this, "UndiciError"); |
| 17 | } |
| 18 | constructor(message, options) { |
| 19 | super(message, options); |
| 20 | this.name = "UndiciError"; |
| 21 | this.code = "UND_ERR"; |
| 22 | } |
| 23 | static [Symbol.hasInstance](instance) { |
| 24 | return instance && instance[kUndiciError] === true; |
| 25 | } |
nothing calls this directly
no test coverage detected