MCPcopy Index your code
hub / github.com/nodejs/node / inspectWithNoCustomRetry

Function inspectWithNoCustomRetry

lib/internal/errors.js:263–271  ·  view source on GitHub ↗
(obj, options)

Source from the content-addressed store, hash-verified

261}
262
263function 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.

Callers 4

errors.jsFile · 0.85
junit.jsFile · 0.85
jsToYamlFunction · 0.85
formatErrorFunction · 0.85

Calls 2

lazyInternalUtilInspectFunction · 0.85
inspectMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…