Appearance
import { round } from "grantlibs"; 或; const { round } = require("grantlibs");
round(number: number, precision = 2): number
number
round(1.23456, 2); // => 1.23 round(1.235, 1); // => 1.2 round(1234.56); // => 1234.56