@creately/round-n
v1.0.3
Published
Round numbers by any number.
Downloads
3
Keywords
Readme
round-n
Round numbers by any number.
Examples
roundN
import { roundN } from '@creately/round-n';
roundN(113, 2.5) // 112.5
roundN(6, Math.PI) // 6.28...
ceilN
import { ceilN } from '@creately/round-n';
ceilN(113, 2.5) // 115
ceilN(6, Math.PI) // 6.28...
floorN
import { ceilN } from '@creately/round-n';
ceilN(113, 2.5) // 112.5
ceilN(6, Math.PI) // 3.14...