(parts: string[])
| 278 | } |
| 279 | |
| 280 | export function resolveTaskBody(parts: string[]): string { |
| 281 | if (parts.length === 1 && parts[0] === "-") { |
| 282 | return readFileSync(0, "utf8"); |
| 283 | } |
| 284 | return parts.join(" "); |
| 285 | } |
| 286 | |
| 287 | export function parseRespawnSourceOrBail(value: string): RespawnSource { |
| 288 | switch (value) { |
no outgoing calls
no test coverage detected