Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
rameshvarun committed Jul 4, 2023
1 parent a349933 commit c77171b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/decoders/ogg.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ test("Ogg Opus high-bitrate noise", () => {
let data = fs.readFileSync(path.join(__dirname, "__files__", "noise.opus"));
let range = new ByteRange(data.buffer, data.byteOffset, data.byteLength);
expect(inspect(range)).toMatchSnapshot();
})
});
4 changes: 3 additions & 1 deletion src/decoders/ogg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,9 @@ function inspectPage(

// TODO: Packets that span across pages.
if (currentSegmentSize > 0) {
throw new Error("Packets that span multiple pages are not yet implemented.");
throw new Error(
"Packets that span multiple pages are not yet implemented."
);
}

// Look for stream headers.
Expand Down

0 comments on commit c77171b

Please sign in to comment.