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