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

precise-math

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

precise-math

Perform precise math operations without floating point errors.

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
11
-50%
Maintainers
1
Weekly downloads
 
Created
Source

precise-math Travis CI Build Status

Perform precise math operations without floating point errors.

NPM Badge

Install

npm install precise-math

Usage

const { add } = require("precise-math")

console.log(0.2 + 0.1 + 0.05)
//=> 0.35000000000000003

console.log(add(0.2, 0.1, 0.05))
//=> 0.35

API

add(...numbers)

subtract(...numbers)

multiply(...numbers)

divide(...numbers)

modulo(...numbers)

numbers

Type: numbers

The numbers to perform the math operation on.

Keywords

math

FAQs

Package last updated on 07 Oct 2020

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