(value)
| 396 | |
| 397 | const INSPECT_OPTIONS = { colors: inspector.stdout.isTTY }; |
| 398 | function inspect(value) { |
| 399 | return utilInspect(value, INSPECT_OPTIONS); |
| 400 | } |
| 401 | |
| 402 | function print(value, addNewline = true) { |
| 403 | const text = typeof value === 'string' ? value : inspect(value); |
no outgoing calls
no test coverage detected
searching dependent graphs…