* Construct a new `SourceMapConsumer` from `rawSourceMap` and `sourceMapUrl` * (see the `SourceMapConsumer` constructor for details. Then, invoke the `async * function f(SourceMapConsumer) -> T` with the newly constructed consumer, wait * for `f` to complete, call `destroy` on the consumer,
(
rawSourceMap: RawSourceMap | RawIndexMap | string,
sourceMapUrl: SourceMapUrl | null | undefined,
callback: (
consumer: BasicSourceMapConsumer | IndexedSourceMapConsumer
) => Promise<T> | T
)
| 279 | * ``` |
| 280 | */ |
| 281 | with<T>( |
| 282 | rawSourceMap: RawSourceMap | RawIndexMap | string, |
| 283 | sourceMapUrl: SourceMapUrl | null | undefined, |
| 284 | callback: ( |
no outgoing calls
no test coverage detected