Some screenshots have too many bytes for `String.fromCharCode.apply(null, bytes)` See https://stackoverflow.com/questions/22747068/is-there-a-max-number-of-arguments-javascript-functions-can-accept ```js let byteString = ""; for (const b of bytes) { byteString += String.fromCharCode(b); } ``` seems to work… but is apparently slow. Sticking with `fromCharCode`
Some screenshots have too many bytes for
String.fromCharCode.apply(null, bytes)See https://stackoverflow.com/questions/22747068/is-there-a-max-number-of-arguments-javascript-functions-can-accept
seems to work… but is apparently slow. Sticking with
fromCharCode