rounder

0.0.2 • Public • Published

rounder Build Status

Round a number to a specific number of decimal places.

Install

$ npm install --save rounder

Usage

var rounder = require('rounder');
 
rounder(1.5254325, 2);
//=> 1.53
 
rounder(1.5254325, 3);
//=> 1.525

API

rounder(value, precision)

value

Required Type: number

The number to round.

precision

Type: number

The number of digits after the decimal point to round to.

License

MIT © Nate Cavanaugh

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i rounder

    Weekly Downloads

    3

    Version

    0.0.2

    License

    MIT

    Last publish

    Collaborators

    • natecavanaugh