(obj, options)
| 261 | } |
| 262 | |
| 263 | function inspectWithNoCustomRetry(obj, options) { |
| 264 | const utilInspect = lazyInternalUtilInspect(); |
| 265 | |
| 266 | try { |
| 267 | return utilInspect.inspect(obj, options); |
| 268 | } catch { |
| 269 | return utilInspect.inspect(obj, { ...options, customInspect: false }); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | // A specialized Error that includes an additional info property with |
| 274 | // additional information about the error condition. |
no test coverage detected
searching dependent graphs…