(fileName: string)
| 405 | } |
| 406 | |
| 407 | export function isTypeScriptFile(fileName: string): boolean { |
| 408 | return /\.[cm]?tsx?$/i.test(fileName); |
| 409 | } |
| 410 | |
| 411 | export function isExternalTemplate(fileName: string): boolean { |
| 412 | return !isTypeScriptFile(fileName); |
no test coverage detected
searching dependent graphs…