UNPKG
gaga-js-utils
Version:
latest (1.0.0)
1.0.0
js tools
gaga-js-utils
/
src
/
thousandth
/
__tests__
/
index.spec.js
7 lines
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
// 数字千分位分割
describe
(
"数字千分位分割"
,
() =>
{
it
(
"测试thousandth方法"
,
() =>
{
const
{ thousandth } =
require
(
"../index"
);
expect
(
thousandth
(
10000000
)).
toEqual
(
'10,000,000'
); }); });