Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqingchen committed Nov 6, 2024
1 parent a4c34a4 commit 643df08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/skia/helper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const EPSILON = 1e-4;
export function isAroundZero(transform: number) {
return transform < EPSILON && transform > -EPSILON;
}
return transform < EPSILON && transform > -EPSILON;
}

0 comments on commit 643df08

Please sign in to comment.