(fileUrl)
| 1475 | } |
| 1476 | |
| 1477 | function createFile(fileUrl) { |
| 1478 | const paths = fileUrl.split("/"); |
| 1479 | const filename = paths.pop(); |
| 1480 | return createDir(projectFiles, fileUrl, filename, paths); |
| 1481 | } |
| 1482 | |
| 1483 | async function createDir(project, fileUrl, filename, paths) { |
| 1484 | const lclUrl = Url.join(projectLocation, ctUrl); |
no test coverage detected