(fullPath, content)
| 21748 | return Disk.getFiles(folder) |
| 21749 | } |
| 21750 | async write(fullPath, content) { |
| 21751 | if (isUrl(fullPath)) { |
| 21752 | throw new Error("Cannot write to URL") |
| 21753 | } |
| 21754 | Disk.writeIfChanged(fullPath, content) |
| 21755 | } |
| 21756 | async getMTime(absolutePath) { |
| 21757 | if (isUrl(absolutePath)) { |
| 21758 | const cached = urlCache[absolutePath] |
no test coverage detected