import * as r from 'restructure'; let loca = new r.VersionedStruct('head.indexToLocFormat', { 0: { offsets: new r.Array(r.uint16) }, 1: { offsets: new r.Array(r.uint32) } }); loca.process = function() { if (this.version === 0 && !this._processed) { for (let i = 0; i < this.offsets.length; i++) { this.offsets[i] <<= 1; } this._processed = true; } }; loca.preEncode = function() { if (this.version === 0 && this._processed !== false) { for (let i = 0; i < this.offsets.length; i++) { this.offsets[i] >>>= 1; } this._processed = false; } }; export default loca;