(array: string[], s: string)
| 122 | return sourceMapV3; |
| 123 | |
| 124 | function getOrAddString(array: string[], s: string) { |
| 125 | const index = array.indexOf(s); |
| 126 | if (index >= 0) { |
| 127 | return index; |
| 128 | } |
| 129 | array.push(s); |
| 130 | return array.length - 1; |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | export function waitForAllSourceMapsProcessed(): Promise<unknown> { |
no test coverage detected