(s: Option.Option<string>)
| 1561 | }); |
| 1562 | |
| 1563 | const applyScope = (s: Option.Option<string>) => { |
| 1564 | const dir = Option.getOrUndefined(s); |
| 1565 | if (dir) process.env.EXECUTOR_SCOPE_DIR = resolve(dir); |
| 1566 | }; |
| 1567 | |
| 1568 | const parseOptionalJsonObject = ( |
| 1569 | raw: string | undefined, |
no test coverage detected