(name: string)
| 45 | * Checks if a filename is a valid model text file (e.g. notes bundled by Companion). |
| 46 | */ |
| 47 | export const isModelTextFile = (name: string): boolean => |
| 48 | name.endsWith(".txt") && !name.startsWith("._"); |
no outgoing calls
no test coverage detected