diff --git a/core/src/utils/floating-point/floating-point.spec.ts b/core/src/utils/floating-point/floating-point.spec.ts index d52fbd0f9c..d985699ba7 100644 --- a/core/src/utils/floating-point/floating-point.spec.ts +++ b/core/src/utils/floating-point/floating-point.spec.ts @@ -29,6 +29,6 @@ describe('floating point utils', () => { expect(roundToMaxDecimalPlaces(undefined as any)).toBe(0); expect(roundToMaxDecimalPlaces(null as any)).toBe(0); expect(roundToMaxDecimalPlaces(NaN as any)).toBe(0); - }) + }); }); }); diff --git a/core/src/utils/floating-point/index.ts b/core/src/utils/floating-point/index.ts index 1ece5510c8..6f94b80129 100644 --- a/core/src/utils/floating-point/index.ts +++ b/core/src/utils/floating-point/index.ts @@ -1,4 +1,4 @@ -import { isSafeNumber } from "@utils/helpers"; +import { isSafeNumber } from '@utils/helpers'; export function getDecimalPlaces(n: number) { if (!isSafeNumber(n)) return 0;