(...paths: string[])
| 3 | export const rootDir: string = dirname(require.resolve('../../package.json')); |
| 4 | |
| 5 | export function rootPath(...paths: string[]): string { |
| 6 | return join(rootDir, ...paths); |
| 7 | } |
| 8 | |
| 9 | export function multiline(...lines: string[]): string { |
| 10 | if (lines.length < 1) { |
no outgoing calls
no test coverage detected