You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also I would love you to check out my exifr. It was built to be very performant, memory efficient, supports many file formats and segments. And it's overall awesome :D
Please add "let" or "var" inside getStringFromDB() such as:
function getStringFromDB(buffer, start, length) {
var outstr = "";
for (let n = start; n < start+length; n++) {
outstr += String.fromCharCode(buffer.getUint8(n));
}
return outstr;
}
The text was updated successfully, but these errors were encountered: