🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

float-number-calc

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

float-number-calc

Solve the problem of floating point calculation accuracy

latest
Source
npmnpm
Version
1.2.0
Version published
Weekly downloads
11
Maintainers
1
Weekly downloads
 
Created
Source

Introduction

Solve the accuracy problem of floating point calculation.

Documentation

Install

npm install float-number-calc --save
or
npm i float-number-calc -S
or
yarn add float-number-calc

Usage

import calc from 'float-number-calc'

calc.add('0.01', '9.99')  // '10.00'
calc.sub('10.00', '9.99') // '0.01'
calc.mul('1.11', '9')     // '9.99'
calc.div('9.99', '1.11')  // '9'

API

方法名参数说明
addadd(x, y)简单加法
subsub(x, y)简单减法
mulmul(x, y)简单乘法
divdiv(x, y)简单除法

To do

✅ ❌ ⌛️

  • ✅ .md
  • ✅ unit test
  • ✅ test coverage
  • ✅ ESLint
  • ⌛️ CHANGELOG
  • ⌛️ Git Commit Standard

Issues

Please make sure to read the Issue Reporting Checklist before opening an issue. Issues not conforming to the guidelines may be closed immediately.

Changelog

Detailed changes for each release are documented in the release notes.

Stay In Touch

License

MIT

Copyright (c) 2021-present, FloretPig

Keywords

float

FAQs

Package last updated on 26 Jan 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