(str)
| 5 | let { SourceMapConsumer, SourceMapGenerator } = require('source-map-js') |
| 6 | |
| 7 | function fromBase64(str) { |
| 8 | if (Buffer) { |
| 9 | return Buffer.from(str, 'base64').toString() |
| 10 | } else { |
| 11 | /* c8 ignore next 2 */ |
| 12 | return window.atob(str) |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | class PreviousMap { |
| 17 | constructor(css, opts) { |
no test coverage detected
searching dependent graphs…