Round a number to a specified decimal precision
npm install round-precision> Round a number to a specified decimal precision
```
$ npm install --save round-precision
`js`
var roundPrecision = require('round-precision')
roundPrecision(12.34, 1)
//=> 12.3
#### roundPrecision(value, places) -> number
##### value
Required
Type: number
A finite number to round.
##### value
Required
Type: number`
A non-negative number of integer places.
MIT © Ben Drucker