Print a fatal error and exit.
(msg)
| 66 | |
| 67 | /** Print a fatal error and exit. */ |
| 68 | function die(msg) { |
| 69 | console.error(`\n Error: ${msg}\n`); |
| 70 | process.exit(1); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Parse a Python version string like "Python 3.13.6" and return |
no outgoing calls
no test coverage detected