server-json/node_modules/exifreader/src/image-header-iso-bmff-utils.js
2024-11-01 08:00:42 +00:00

5 lines
237 B
JavaScript

export function get64BitValue(dataView, offset) {
// It's a bit tricky to handle 64 bit numbers in JavaScript. Let's
// wait until there are real-world examples where it is necessary.
return dataView.getUint32(offset + 4);
}