tofixed
Version:
Converts a number into a string, keeping a specified number of decimals.
38 lines (21 loc) • 952 B
Markdown
# toFixed
> Converts a number into a string, keeping a specified number of decimals.
[](https://github.com/gearcase/tofixed/blob/master/LICENSE)
[](https://travis-ci.org/gearcase/toFixed)
[](https://coveralls.io/github/gearcase/toFixed)
## Install
```
$ npm install --save tofixed
```
## Usage
```js
var toFixed = require('tofixed');
// API
// - toFixed(number, precision)
toFixed(5.56789, 2);
// => '5.57'
```
Note: it will return a fixed number of *at most* `precision` digits after the decimal.
## Contributing
Pull requests and stars are highly welcome.
For bugs and feature requests, please [create an issue](https://github.com/gearcase/tofixed/issues/new).