update snippet toDecimalMark, add test for toDecimalMark
This commit is contained in:
@ -7,5 +7,5 @@ const toDecimalMark = num => num.toLocaleString('en-US');
|
|||||||
```
|
```
|
||||||
|
|
||||||
```js
|
```js
|
||||||
toDecimalMark(12305030388.9087); // "12,305,030,388.9087"
|
toDecimalMark(12305030388.9087); // "12,305,030,388.909"
|
||||||
```
|
```
|
||||||
|
|||||||
@ -5,6 +5,7 @@ test('Testing toDecimalMark', (t) => {
|
|||||||
//For more information on all the methods supported by tape
|
//For more information on all the methods supported by tape
|
||||||
//Please go to https://github.com/substack/tape
|
//Please go to https://github.com/substack/tape
|
||||||
t.true(typeof toDecimalMark === 'function', 'toDecimalMark is a Function');
|
t.true(typeof toDecimalMark === 'function', 'toDecimalMark is a Function');
|
||||||
|
t.equal(toDecimalMark(12305030388.9087), "12,305,030,388.909", "convert a float-point arithmetic to the Decimal mark form");
|
||||||
//t.deepEqual(toDecimalMark(args..), 'Expected');
|
//t.deepEqual(toDecimalMark(args..), 'Expected');
|
||||||
//t.equal(toDecimalMark(args..), 'Expected');
|
//t.equal(toDecimalMark(args..), 'Expected');
|
||||||
//t.false(toDecimalMark(args..), 'Expected');
|
//t.false(toDecimalMark(args..), 'Expected');
|
||||||
|
|||||||
Reference in New Issue
Block a user