(string)
| 23 | ); |
| 24 | const IS_CI = Boolean(process.env.CI); |
| 25 | const removeFinalNewLine = (string) => |
| 26 | string.endsWith("\n") ? string.slice(0, -1) : string; |
| 27 | const SUPPORTS_DISABLE_WARNING_FLAG = |
| 28 | Number(process.versions.node.split(".", 1)[0]) >= 20; |
| 29 | const promiseWithResolvers = Promise.withResolvers |
no outgoing calls
no test coverage detected
searching dependent graphs…