1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

9 lines
182 B
Plaintext
Raw Normal View History

var toHide = function (array) {
if (!array) return;
var mphone = array.substring(0, 3) + '****' + array.substring(7);
return mphone;
};
module.exports = {
toHide: toHide,
};