(fileName: string)
| 29 | } |
| 30 | |
| 31 | export function normalizeLuaLikeFileName(fileName: string): string { |
| 32 | return fileName.replace(/\.lua$/i, ".luau"); |
| 33 | } |
| 34 | |
| 35 | export function stripScriptDisambiguationSuffix(scriptName: string): string { |
| 36 | return scriptName.replace(/__\{?[a-z0-9-]{6,}\}?$/i, ""); |
no outgoing calls
no test coverage detected