0.0.2 • Published 9 years ago

rounder v0.0.2

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

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