(file *SourceFile)
| 1639 | } |
| 1640 | |
| 1641 | func IsExternalModule(file *SourceFile) bool { |
| 1642 | return file.ExternalModuleIndicator != nil |
| 1643 | } |
| 1644 | |
| 1645 | func IsExternalOrCommonJSModule(file *SourceFile) bool { |
| 1646 | return file.ExternalModuleIndicator != nil || file.CommonJSModuleIndicator != nil |
no outgoing calls
no test coverage detected