
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
almost-equal
Advanced tools
Checks when two floats are almost equal.
First install using npm:
npm install almost-equal
Then use as follows:
var almostEqual = require("almost-equal")
var a = 100
, b = 100 + 1e-12
//Check if a == b up to float precision
console.log(almostEqual(a, b, almostEqual.FLT_EPSILON, almostEqual.FLT_EPSILON))
//Check if a == b up to double precision
console.log(almostEqual(a, b, almostEqual.DBL_EPSILON, almostEqual.DBL_EPSILON))
almostEqual(a, b[, absoluteTolerance [, relativeTolerance]])
Checks if two floats are within the given tolerances of one another using the formula:
|a - b| < max(absoluteTolerance, min(|a|, |b|) * relativeTolerance)
a
and b
are the two numbers to comapreabsoluteTolerance
is a fixed minimal tolerance (set to 0 to ignore)relativeTolerance
is a tolerance that scales with a/b (set to 0 to ignore)Returns true
if a
and b
are approximately equal.
If tolerance argument is omitted, almostEqual.DBL_EPSILON
value is used by default.
almostEqual.FLT_EPSILON
Floating point (32-bit) epsilon
almostEqual.DBL_EPSILON
Double precision (64-bit) epsilon
(c) 2013 Mikola Lysenko. MIT License
FAQs
Test if two floats are almost equal
The npm package almost-equal receives a total of 192,955 weekly downloads. As such, almost-equal popularity was classified as popular.
We found that almost-equal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.