stround:使用字符串对精确数字进行舍入方法

时间:2024-06-04 10:19:02
【文件属性】:

文件名称:stround:使用字符串对精确数字进行舍入方法

文件大小:12KB

文件格式:ZIP

更新时间:2024-06-04 10:19:02

JavaScript

扼杀 stround为表示为字符串的数字提供了典型数字格式化库(例如NSNumberFormatter,BigDecimal)支持的类型的任意精度舍入。 目的是为了避免在仍然使用十进制值的情况下出现浮点错误。 安装 $ npm install stround 用法 $ node > var stround = require ( 'stround' ) ; // Extract exports for examples below. > var round = stround . round ; > var shift = stround . shift ; > var modes = stround . modes ; 如果未指定精度,则四舍五入为整数: > round ( '5.025' ) ; '5' > round ( '12.8' ) ; '13' 回合指定精度:


【文件预览】:
stround-master
----package.json(1KB)
----Makefile(370B)
----.travis.yml(509B)
----dist()
--------stround.min.js(2KB)
--------stround.js(8KB)
----LICENSE(555B)
----README.md(3KB)
----lib()
--------stround.js(6KB)
----bower.json(431B)
----test()
--------stround_test.js(10KB)

网友评论