(...args)
| 104 | |
| 105 | let internalUtilInspect; |
| 106 | function inspect(...args) { |
| 107 | internalUtilInspect ??= require('internal/util/inspect'); |
| 108 | return internalUtilInspect.inspect(...args); |
| 109 | } |
| 110 | |
| 111 | let serialize; |
| 112 | function serializeError(error, rememberSet = new SafeSet()) { |
no test coverage detected
searching dependent graphs…