文件名称:round-to:将数字四舍五入到小数点后一位
文件大小:5KB
文件格式:ZIP
更新时间:2024-05-26 19:32:06
JavaScript
四舍五入 将数字四舍五入为小数位数: 1.234 → 1.2 安装 $ npm install round-to 用法 const roundTo = require ( 'round-to' ) ; roundTo ( 1.234 , 2 ) ; //=> 1.23 roundTo . up ( 1.234 , 2 ) ; //=> 1.24 roundTo . down ( 1.234 , 2 ) ; //=> 1.23 数字四舍五入为小数位数。 指定负precision将四舍五入到小数点左边的任意位数。 roundTo ( 1234.56 , - 2 ) ; //=> 1200 指定无限precision将假定无限小数位。 roundTo ( 0.1231782638 , Infinity ) ; //=> 0.1231782638 原料药 roundTo(数字,精度) 用
【文件预览】:
round-to-main
----index.js(768B)
----test.js(2KB)
----package.json(700B)
----index.test-d.ts(189B)
----readme.md(1KB)
----.github()
--------workflows()
----license(1KB)
----index.d.ts(1KB)
----.gitignore(23B)
----.npmrc(19B)
----.editorconfig(175B)
----.gitattributes(19B)