(info: FileSystem.File.Info)
| 91 | } |
| 92 | |
| 93 | const mtimeMs = (info: FileSystem.File.Info) => Option.getOrElse(info.mtime, () => new Date(0)).getTime() |
| 94 | |
| 95 | const isPathGone = (e: PlatformError) => e.reason._tag === "NotFound" || e.reason._tag === "Unknown" |
| 96 |