Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

round-to

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

round-to

Round a number to a specific number of decimal places: 1.234 → 1.2

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
48K
increased by15.86%
Maintainers
1
Weekly downloads
 
Created
Source

round-to Build Status

Round a number to a specific number of decimal places: 1.2341.2

Install

$ npm install --save round-to

Usage

var roundTo = require('round-to');

roundTo(1.234, 2);
//=> 1.23

roundTo.up(1.234, 2);
//=> 1.24

roundTo.down(1.234, 2);
//=> 1.23

Numbers are rounded to a specific number of significant figures. Specifying a negative precision will round to any number of places to the left of the decimal.

roundTo(1234.56, -2);
//=> 1200

API

roundTo(value, precision)

Round the decimals with Math.round.

roundTo.up(value, precision)

Round up the decimals with Math.ceil.

roundTo.down(value, precision)

Round down the decimals with Math.floor.

value

Type: number

precision

Type: number (integer)

Number of decimal places.

License

MIT © Sindre Sorhus

Keywords

FAQs

Package last updated on 01 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc