(s: Option.Option<string>)
| 1571 | }); |
| 1572 | |
| 1573 | const applyScope = (s: Option.Option<string>) => { |
| 1574 | const dir = Option.getOrUndefined(s); |
| 1575 | if (dir) process.env.EXECUTOR_SCOPE_DIR = resolve(dir); |
| 1576 | }; |
| 1577 | |
| 1578 | const parseOptionalJsonObject = ( |
| 1579 | raw: string | undefined, |
no test coverage detected