Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Hopding committed Oct 16, 2021
1 parent 1ec56a0 commit 98e8777
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/PDFPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1145,14 +1145,14 @@ export default class PDFPage {

// prettier-ignore
const xScale = (
options.width !== undefined ? options.width / embeddedPage.width
options.width !== undefined ? options.width / embeddedPage.width
: options.xScale !== undefined ? options.xScale
: 1
);

// prettier-ignore
const yScale = (
options.height !== undefined ? options.height / embeddedPage.height
options.height !== undefined ? options.height / embeddedPage.height
: options.yScale !== undefined ? options.yScale
: 1
);
Expand Down

0 comments on commit 98e8777

Please sign in to comment.