HandsomeWolf / pixiu-number-toolkit

A collection of number utilities.
https://www.muchappy.com/open_source/pixiu-number-toolkit/
MIT License
75 stars 5 forks source link

转换小数存在问题 #14

Open Mirrorgo opened 1 month ago

Mirrorgo commented 1 month ago

const { numberToChineseCharacter } = require('pixiu-number-toolkit'); console.log(numberToChineseCharacter(0.01)); // 预期输出: 零点零一
实际输出 零点一

另外, math.evaluate缺失。 可以点击下面链接看到 https://github.com/search?q=repo%3AHandsomeWolf%2Fpixiu-number-toolkit%20evaluate&type=code 项目中没有真正的evaluate函数

HandsomeWolf commented 3 weeks ago

问题已修复:小数部分所有的0转为“零”。 math的评估函数存在的问题是?没太理解!

Mirrorgo commented 3 weeks ago

问题已修复:小数部分所有的0转为“零”。 math的评估函数存在的问题是?没太理解!

我的意思是, 项目中似乎没有任何地方定义了这个函数?