bitburner-src/src/Script/ScriptHelpersTS.ts

5 lines
151 B
TypeScript
Raw Normal View History

// Script helper functions
export function isScriptFilename(f: string) {
return f.endsWith(".js") || f.endsWith(".script") || f.endsWith(".ns");
}