UNPKG
gaga-js-utils
Version:
latest (1.0.0)
1.0.0
js tools
gaga-js-utils
/
src
/
common
/
index.js
10 lines
(9 loc)
•
266 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
// 手机号中间四位变成*
exports
.
telFormat
=
(
tel
) =>
{ tel =
String
(tel);
return
tel.
substr
(
0
,
3
) +
"****"
+ tel.
substr
(
7
); };
// 字符串首字母大写
exports
.
fistLetterUpper
=
(
str
) =>
{
return
str.
charAt
(
0
).
toUpperCase
() + str.
slice
(
1
); };