UNPKG

@svta/common-media-library

Version:
9 lines 321 B
import { readUint } from './readUint.js'; export function readTemplate(dataView, offset, size) { const half = size / 2; const pre = readUint(dataView, offset, half); const post = readUint(dataView, offset + half, half); return pre + (post / Math.pow(2, half)); } ; //# sourceMappingURL=readTemplate.js.map