(pth: string)
| 30 | .join(' '); |
| 31 | |
| 32 | const getTemplateFileContent = (pth: string) => { |
| 33 | const pt = path.resolve(__dirname, `${tmpPath}/${pth}`); |
| 34 | return fs.readFileSync(pt, 'utf8'); |
| 35 | }; |
| 36 | |
| 37 | const resolveRoot = (pth: string) => { |
| 38 | return path.resolve(rootPath, pth); |
no outgoing calls
no test coverage detected