sig-floor:向下舍入到最接近的有效倍数

时间:2024-03-23 20:26:41
【文件属性】:

文件名称:sig-floor:向下舍入到最接近的有效倍数

文件大小:6KB

文件格式:ZIP

更新时间:2024-03-23 20:26:41

JavaScript

信号地板 将数字四舍五入(朝零逼近)至最接近的有效倍数。 就像Microsoft Excel中的FLOOR函数一样。 例子 var sigFloor = require ( 'sig-floor' ) ; // round to the nearest multiple of 2 sigFloor ( 2.5 , 2 ) ; // => 2 // round to the nearest multiple of -2 sigFloor ( - 2.5 , - 2 ) ; // => -2 // round to the nearest multiple of 0.1 sigFloor ( 1.5 , 0.1 ) ; // => 1.5 // round to the nearest multiple of 0.01 sigFloor ( 0.234 , 0.01 ) ; // => 0.2


【文件预览】:
sig-floor-master
----.releaserc.json(301B)
----.gitattributes(19B)
----.github()
--------dependabot.yml(134B)
--------workflows()
----LICENSE.txt(1KB)
----.eslintrc.js(42B)
----test()
--------index.js(637B)
----README.md(780B)
----.renovaterc.json(36B)
----.npmrc(21B)
----.gitignore(26B)
----index.js(82B)
----CHANGELOG.md(322B)
----package.json(945B)

网友评论