(...args)
| 10 | const here = (...p) => path.join(__dirname, ...p) |
| 11 | const VERBOSE = false |
| 12 | const logVerbose = (...args) => (VERBOSE ? console.log(...args) : undefined) |
| 13 | |
| 14 | const workshopRoot = here('..') |
| 15 | const examples = (await readDir(here('../examples'))).map(dir => |
no outgoing calls
no test coverage detected