Skip to content
/ round.js Public

Round a number to a specific number, by decimal or nearest

Notifications You must be signed in to change notification settings

Knape/round.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Nov 24, 2017
8b6148c · Nov 24, 2017

History

16 Commits
Nov 24, 2017
Nov 24, 2017
Nov 24, 2017
Jan 20, 2017
Feb 23, 2017
Jan 20, 2017
Nov 24, 2017
Jan 20, 2017
Nov 24, 2017
Nov 24, 2017
Nov 24, 2017

Repository files navigation

round.js

Build Status Coverage Status Code Climate

Round a number to a specific number, by decimal or nearest

Installation

Install the package from npm

$ npm install --save round.js

Usage

import round from 'round.js';

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

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

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

round.to(11, 5);
//=> 10

round.next(11, 10);
//=> 20

round.prev(11, 10);
//=> 10

API

round.js: Tiny number-parser lib

Returns Number

round

Rounds a floating number to nearest number / float based on precision

Parameters

  • Number
  • precision
round(1.234, 2);
//=> 1.23

round.up

Rounds a floating up number to nearest number / float based on precision

Parameters

  • Number
  • precision
round.up(1.234, 2);
//=> 1.24

round.down

Rounds a floating down number to nearest number / float based on precision

Parameters

  • Number
  • precision
round.down(1.234, 2);
//=> 1.23

round.near

Increment or decrement the number until it reaches the nearest near number

Parameters

  • Number
  • near
round.near(11, 5);
//=> 10

round.near(13, 5);
//=> 15

round.next

Increment the number until it reaches the next next number

Parameters

  • Number
  • next
round.next(11, 5);
//=> 15

round.prev

Decrement the number until it reaches the previous prev number

Parameters

  • Number
  • prev
round.prev(11, 5);
//=> 10

About

Round a number to a specific number, by decimal or nearest

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published