Last 12 weeks ยท 0 commits
4 of 6 standards met
Repository: sindresorhus/float-equal. Description: Check if two floats are almost equal Stars: 18, Forks: 3. Primary language: JavaScript. Languages: JavaScript (100%). License: MIT. Latest release: v3.0.0 (4y ago). Open PRs: 0, open issues: 0. Last activity: 4y ago. Community health: 71%. Top contributors: sindresorhus.
let a = 0.00000000000000000000001; let b = 0.00000000000000000000002; floatEqual(a, b); //true a == b; //false