hls.js 1.5.7-0.canary.10014 → 1.5.7-0.canary.10015

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -130,5 +130,5 @@
130
130
  "url-toolkit": "2.2.5",
131
131
  "wrangler": "3.28.2"
132
132
  },
133
- "version": "1.5.7-0.canary.10014"
133
+ "version": "1.5.7-0.canary.10015"
134
134
  }
@@ -478,7 +478,9 @@ function parseStsd(stsd: Uint8Array): { codec: string; encrypted: boolean } {
478
478
 
479
479
  function skipBERInteger(bytes: Uint8Array, i: number): number {
480
480
  const limit = i + 5;
481
- while (bytes[i++] & 0x80 && i < limit) {}
481
+ while (bytes[i++] & 0x80 && i < limit) {
482
+ /* do nothing */
483
+ }
482
484
  return i;
483
485
  }
484
486