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

calculate-asmd

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

calculate-asmd

The precise addition, subtraction, multiplication and division of JavaScript avoids the error of floating point calculation

  • 2.4.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

calculate-asmd

NPM version

The precise addition, subtraction, multiplication and division of JavaScript avoids the error of floating point calculation.

Production

0.2 + 0.4 = 0.6 ?

Install

yarn

yarn add calculate-asmd

npm

npm install calculate-asmd --save

umd

<script src="https://unpkg.com/calculate-asmd@2.4.4/dist/index.umd.js"></script>

OR

<script src="https://unpkg.com/calculate-asmd@2.4.4/dist/index.umd.min.js"></script>

Tips: You can find the library on window.CalculateAsmd.

Usage


import { add, sub, mul, div } from 'calculate-asmd'

const addNum = add(0.2, 0.4);
console.log("add(0.2, 0.4): ", addNum); //add(0.2, 0.4): 0.6
const addNegative = add(0.2, -0.4);
console.log("add(0.2, -0.4): ", addNegative); //add(0.2, -0.4): -0.2

const subNum = sub(0.2, 0.4);
console.log("sub(0.2, 0.4): ", subNum); //sub(0.2, 0.4): -0.2
const subNegative = sub(0.2, -0.4);
console.log("sub(0.2, -0.4): ", subNegative); //sub(0.2, -0.4): 0.6

const mulNum = mul(0.57, 100);
console.log("mul(0.57, 100): ", mulNum); //mul(0.57, 100): 57
const mulNegativ = mul(-0.57, 100);
console.log("mul(-0.57, 100): ", mulNegativ); //mul(-0.57, 100): -57

const divNum = div(0.57, 100);
console.log("div(0.57, 100): ", divNum); //div(0.57, 100): 0.0057
const divNegative = div(-0.57, 100);
console.log("div(-0.57, 100): ", divNegative); //div(-0.57, 100): -0.0057

asmd(arg1,arg2)

arg1: Default 0, type number/string

arg2: Default 0, type number/string

Tips: If arg is NaN, it will return NaN directly. If arg is null/undefined/"", arg will be treated as 0

div(arg1,arg2)

arg2: If arg2 is 0, it will return Infinity.

Expand


import { scaleNum } from 'calculate-asmd'

scaleNum(0.57, 2) // 57
scaleNum(0.57, -2) // 0.0057
scaleNum(0.57, 0) // 0.57

Test

Test Document

LICENSE

MIT License

Keywords

FAQs

Package last updated on 28 Jun 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

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