function toHide(arr) { var phone = arr.substring(0,3) + '****' + arr.substring(7) return phone } module.exports ={ toHide:toHide }