(value: string)
| 103 | } |
| 104 | |
| 105 | function sanitizeSegment(value: string): string { |
| 106 | const sanitized = value.replaceAll(/[^a-zA-Z0-9._-]/g, '_'); |
| 107 | return sanitized.length > 0 ? sanitized : 'unknown'; |
| 108 | } |
| 109 | |
| 110 | export function getSeaAssetSource(): NativeAssetSource | null { |
| 111 | const sea = loadSeaModule(); |
no outgoing calls
no test coverage detected