(text)
| 58 | } |
| 59 | |
| 60 | function ensureTrailingNewline(text) { |
| 61 | return StringPrototypeEndsWith(text, '\n') ? text : `${text}\n`; |
| 62 | } |
| 63 | |
| 64 | function writeInspectUsageAndExit(invokedAs, message, exitCode) { |
| 65 | const code = exitCode ?? (message ? kInvalidCommandLineArgument : 0); |
no outgoing calls
no test coverage detected