| 40 | | [number, number, number, number, number] |
| 41 | |
| 42 | export interface DecodedSourceMap { |
| 43 | file?: string |
| 44 | sources: string[] |
| 45 | sourcesContent?: Array<string | null> |
| 46 | names: string[] |
| 47 | mappings: SourceMapSegment[][] |
| 48 | x_google_ignoreList?: number[] |
| 49 | debugId?: string |
| 50 | } |
| 51 | |
| 52 | function getBtoa(): Btoa { |
| 53 | if (typeof globalThis !== 'undefined' && typeof globalThis.btoa === 'function') { |
nothing calls this directly
no outgoing calls
no test coverage detected