round-to ![Build Status](https://travis-ci.org/sindresorhus/round-to.svg?branch=master)
Round a number to a specific number of decimal places: 1.234
→ 1.2
Install
$ npm install round-to
Usage
const roundTo = require('round-to');
roundTo(1.234, 2);
roundTo.up(1.234, 2);
roundTo.down(1.234, 2);
Numbers are rounded to a specific number of fractional digits. Specifying a negative precision
will round to any number of places to the left of the decimal.
roundTo(1234.56, -2);
API
roundTo(number, precision)
Round the decimals with Math.round
.
roundTo.up(number, precision)
Round up the decimals with Math.ceil
.
roundTo.down(number, precision)
Round down the decimals with Math.floor
.
number
Type: number
Number to adjust.
precision
Type: number
(Integer)
Number of decimal places.
License
MIT © Sindre Sorhus