(self, obj, depth, options)
| 122 | const kDependantSignals = Symbol('kDependantSignals'); |
| 123 | |
| 124 | function customInspect(self, obj, depth, options) { |
| 125 | if (depth < 0) |
| 126 | return self; |
| 127 | |
| 128 | const opts = ObjectAssign({}, options, { |
| 129 | depth: options.depth === null ? null : options.depth - 1, |
| 130 | }); |
| 131 | |
| 132 | return `${self.constructor.name} ${inspect(obj, opts)}`; |
| 133 | } |
| 134 | |
| 135 | function validateThisAbortSignal(obj) { |
| 136 | if (obj?.[kAborted] === undefined) |
no test coverage detected
searching dependent graphs…