(dir, file)
| 211 | } |
| 212 | |
| 213 | isFileInDirectory(dir, file) { |
| 214 | let absoluteDir = TemplatePath.absolutePath(dir); |
| 215 | let absoluteFile = TemplatePath.absolutePath(file); |
| 216 | return absoluteFile.startsWith(absoluteDir); |
| 217 | } |
| 218 | |
| 219 | getOutputDirFilePath(filepath, filename = "") { |
| 220 | let computedPath; |
no outgoing calls
no test coverage detected