(sourceCode: string)
| 340 | } |
| 341 | |
| 342 | function countLines(sourceCode: string): number { |
| 343 | return (sourceCode.match(/\n/g)?.length ?? 0) + 1 |
| 344 | } |
| 345 | |
| 346 | function getPositiveIntegerEnv(name: string, fallback: number): number { |
| 347 | const raw = process.env[name] |
no outgoing calls
no test coverage detected