We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c9094 commit 8c0a500Copy full SHA for 8c0a500
test/hanzi2num.test.js
@@ -128,7 +128,7 @@ describe("hanzi2num", () => {
128
});
129
130
131
- //渺、埃、尘 (塵)、沙、纤、微
+ //渺、埃、尘 (塵)、沙、纤(纖)、微
132
describe('hanzi2num("一微")', () => {
133
it("should translate hanzi to number correctly", () => {
134
assert.strictEqual(hanzi2num("一微"), 1e-6);
@@ -141,6 +141,12 @@ describe("hanzi2num", () => {
141
142
143
144
+ describe('hanzi2num("一纖")', () => {
145
+ it("should translate hanzi to number correctly", () => {
146
+ assert.strictEqual(hanzi2num("一纖"), 1e-7);
147
+ });
148
149
+
150
describe('hanzi2num("一沙")', () => {
151
152
assert.strictEqual(hanzi2num("一沙"), 1e-8);
0 commit comments