mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-25 23:41:29 +01:00
4 lines
131 B
TypeScript
4 lines
131 B
TypeScript
export function isScriptFilename(f: string): boolean {
|
|
return f.endsWith(".js") || f.endsWith(".script") || f.endsWith(".ns");
|
|
}
|