convert to ts

This commit is contained in:
Olivier Gagnon
2021-09-24 16:34:21 -04:00
parent 47f54a11c3
commit 2e05f14c0d
15 changed files with 39 additions and 39 deletions
+3
View File
@@ -0,0 +1,3 @@
export function isScriptFilename(f: string): boolean {
return f.endsWith(".js") || f.endsWith(".script") || f.endsWith(".ns");
}