UNPKG
gaga-js-utils
Version:
latest (1.0.0)
1.0.0
js tools
gaga-js-utils
/
src
/
common
/
__tests__
/
index.spec.js
7 lines
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
describe
(
"公共"
,
() =>
{
it
(
"公共函数"
,
() =>
{
const
{ telFormat } =
require
(
"../index"
);
// 手机号中间四位变成*
expect
(
telFormat
(
17791430699
)).
toBe
(
'177****0699'
); }); });