import { getPrecision } from "../get-precision"; test("getPrecision", () => { expect(getPrecision(0.1)).toBe(1); expect(getPrecision(0.01)).toBe(2); expect(getPrecision(0.000000000001)).toBe(12); });