| 50 | export type SourceMapRangeMappings = number[][] |
| 51 | |
| 52 | export interface DecodedSourceMap { |
| 53 | file?: string |
| 54 | sources: string[] |
| 55 | sourcesContent?: Array<string | null> |
| 56 | names: string[] |
| 57 | mappings: SourceMapSegment[][] |
| 58 | x_google_ignoreList?: number[] |
| 59 | debugId?: string |
| 60 | rangeMappings?: SourceMapRangeMappings |
| 61 | } |
| 62 | |
| 63 | function getBtoa(): Btoa { |
| 64 | if (typeof globalThis !== 'undefined' && typeof globalThis.btoa === 'function') { |
nothing calls this directly
no outgoing calls
no test coverage detected