run formatter

This commit is contained in:
Dax Raad
2025-05-31 14:41:00 -04:00
parent bad8d2aa87
commit 27c92a478f
52 changed files with 1376 additions and 1390 deletions
@@ -1,20 +1,20 @@
import { App } from "../../app/app";
import { App } from "../../app/app"
export namespace FileTimes {
export const state = App.state("tool.filetimes", () => ({
read: new Map<string, Date>(),
write: new Map<string, Date>(),
}));
}))
export function read(filePath: string) {
state().read.set(filePath, new Date());
state().read.set(filePath, new Date())
}
export function write(filePath: string) {
state().write.set(filePath, new Date());
state().write.set(filePath, new Date())
}
export function get(filePath: string): Date | null {
return state().read.get(filePath) || null;
return state().read.get(filePath) || null
}
}