Skip to content

Commit c3e822a

Browse files
committed
fix(lint): fixing test lint
1 parent e89ce6b commit c3e822a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/utils/floating-point/floating-point.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ describe('floating point utils', () => {
2929
expect(roundToMaxDecimalPlaces(undefined as any)).toBe(0);
3030
expect(roundToMaxDecimalPlaces(null as any)).toBe(0);
3131
expect(roundToMaxDecimalPlaces(NaN as any)).toBe(0);
32-
})
32+
});
3333
});
3434
});

core/src/utils/floating-point/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { isSafeNumber } from "@utils/helpers";
1+
import { isSafeNumber } from '@utils/helpers';
22

33
export function getDecimalPlaces(n: number) {
44
if (!isSafeNumber(n)) return 0;

0 commit comments

Comments
 (0)