(source: string)
| 77 | * Check if a source string is an MCPB file reference |
| 78 | */ |
| 79 | export function isMcpbSource(source: string): boolean { |
| 80 | return source.endsWith('.mcpb') || source.endsWith('.dxt') |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Check if a source is a URL |
no outgoing calls
no test coverage detected