New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@drag13/round-to

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@drag13/round-to

Small function that rounds number with selected precision

latest
Source
npmnpm
Version
0.10.4
Version published
Maintainers
1
Created
Source

RoundTo

codecov Build Status npm TypeSCript GitHub license

Description

Small one-function-lib to round numbers with custom precision. TypeScript ready.

Installation

npm install @drag13/round-to

Usage

RoundTo function rounds your decimal with selected precesion. It also tries to handle edge cases with floating point using Epsilon shift and nano-robots.

const round = require('@drag13/round-to');
const roundingResult = round(5.4399, 2);
console.assert(roundingResult===5.44);

TypeScript

Feel free to use it with TypeScript

import * as round from '@drag13/round-to';
const roundingResult = round(5.4399, 2);
console.assert(roundingResult===5.44);

Tests

npm test

Some covered cases

console.assert(roundTo(0.43499999999999994, 2)===0.435);
console.assert(roundTo(Math.PI, 2)===3.14);

Contributing

Any bug fixing is appreciated. If you want to add new functionality - you're welcome. But KISS it please.

Keywords

math

FAQs

Package last updated on 08 May 2021

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