mirror of
https://github.com/palxiao/poster-design.git
synced 2025-07-03 03:56:41 +08:00
7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
export const toNumber = (n: number, { decimal = 0 } = {}) => {
|
|
if (decimal > 0) {
|
|
return Number(n.toFixed(decimal))
|
|
}
|
|
return Math.round(n)
|
|
}
|