(arrayBuffer, url)
| 57653 | return getBlob(arrayBuffer, url); |
| 57654 | } |
| 57655 | function getBlob(arrayBuffer, url) { |
| 57656 | if (isSVG(url)) throw new Error("SVG cannot be parsed directly to imagebitmap"); |
| 57657 | return new Blob([ |
| 57658 | new Uint8Array(arrayBuffer) |
| 57659 | ]); |
| 57660 | } |
| 57661 | |
| 57662 | },{"@parcel/transformer-js/src/esmodule-helpers.js":"jA2du"}],"6xIqW":[function(require,module,exports) { |
| 57663 | var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js"); |
no test coverage detected