Quantize a number to a given step interval.
the number to quantize
the positive step interval
the quantized value
RangeError if step is not positive
import { quantize } from "@trashpanda001/helpers/number"quantize(31, 5)// 30quantize(31, 2)// 32 Copy
import { quantize } from "@trashpanda001/helpers/number"quantize(31, 5)// 30quantize(31, 2)// 32
Quantize a number to a given step interval.