Initial commit

This commit is contained in:
Brian Beck 2025-09-11 16:48:23 -07:00
commit 2211ed7650
10117 changed files with 735995 additions and 0 deletions

3
src/stringUtils.ts Normal file
View file

@ -0,0 +1,3 @@
export function normalize(pathString: string) {
return pathString.replace(/\\/g, "/").replace(/\/+/g, "/");
}