-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
Milestone
Description
@Tyriar You recently added the new Uint8Array(...) here:
xterm.js/addons/addon-image/src/IIPHandler.ts
Line 108 in b2133d9
| const blob = new Blob([new Uint8Array(this._dec.data8)], { type: this._metrics.mime }); |
Imho that is a subpar change, as the Blob ctor already synchronously copies the data, with the array ctor it becomes a copy of a copy?
Reactions are currently unavailable