(fileName: string)
| 20 | } |
| 21 | |
| 22 | export function isScriptFileName(fileName: string): boolean { |
| 23 | return fileName.endsWith(".lua") || fileName.endsWith(".luau"); |
| 24 | } |
| 25 | |
| 26 | export function isInstanceJsonName(fileName: string): boolean { |
| 27 | return fileName.endsWith(".model.json") |
no outgoing calls
no test coverage detected