# round
# Description
根据 precision(精度) 四舍五入 number。
# Params
(number, precision)
# Return
number
# Depend
import createRound from './.internal/createRound.js'
# Code
const round = createRound('round')
# Analyze
使用 createRound
创建了一个 round
方法
# Example
console.log(round(4.99)) // 5
console.log(round(4.99, 2)) // 4.99
console.log(round(4.99, 1)) // 5