Lines Matching refs:inspect
309 function inspect(value, opts) {
366 inspect.custom = customInspectSymbol;
368 ObjectDefineProperty(inspect, 'defaultOptions', {
384 inspect.colors = {
434 ObjectDefineProperty(inspect.colors, alias, {
462 inspect.styles = ObjectAssign(ObjectCreate(null), {
561 const style = inspect.styles[styleType];
563 const color = inspect.colors[style];
625 return `${res} <${inspect(firstProto, {
791 // Provide a hook for user-specified inspect functions.
792 // Check that value is an object with an inspect function on it.
796 // Filter out the util module, its inspect function is special.
797 maybeCustom !== inspect &&
810 inspect,
2189 tempStr = inspect(tempArg, {
2213 tempStr = inspect(args[++a], inspectOptions);
2216 tempStr = inspect(args[++a], {
2279 str += typeof value !== 'string' ? inspect(value, inspectOptions) : value;
2400 inspect,