文件名称:round-half-up-symmetric:javascript的对称上半舍入
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-30 23:19:33
JavaScript
上半对称 四舍五入负数时,Javascript的Math.round()有一些意外的行为,因为它舍入了torrwards +∞: Math . round ( - 20.5 ) // -20 这通常称为不对称舍入。 我想要对称舍入: round ( - 20.6 ) // -21 round ( - 20.5 ) // -21 round ( - 20.4 ) // -20 这就是本模块完成的工作。 npm中有很多模块可以四舍五入,但是我找不到满足所有这些条件的模块: 避免对输入值进行代价高昂的错误检查 没有依赖关系 有测试 <10行 可与es模块和commonjs一起使用 用法 通过es模块包含库: import round from 'round-half-up-symmetric' 或通过commonjs(节点):: const round = req
【文件预览】:
round-half-up-symmetric-main
----.travis.yml(834B)
----index.js(164B)
----package.json(1KB)
----test()
--------index.js(593B)
----LICENSE(1KB)
----.gitignore(45B)
----README.md(3KB)