Skip to main content
variable round
import { round } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Rounds a number to a specified amount of digits.

Use Math.round() and template literals to round the number to the specified number of digits. Omit the second argument, decimals to round to an integer.

type

(n: number, decimals?) => unknown