1.0.3 • Published 6 years ago

@creately/round-n v1.0.3

Weekly downloads
20
License
MIT
Repository
-
Last release
6 years ago

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...