(name)
| 13 | const isWindows = process.platform === "win32"; |
| 14 | |
| 15 | const hyphenToUpperCase = (name) => { |
| 16 | if (!name) { |
| 17 | return name; |
| 18 | } |
| 19 | |
| 20 | return name.replaceAll(/-([a-z])/g, (g) => g[1].toUpperCase()); |
| 21 | }; |
| 22 | |
| 23 | const processKill = (process) => { |
| 24 | if (isWindows) { |
nothing calls this directly
no outgoing calls
no test coverage detected