15179599649
2024-03-11 2362f8bce1fc26a28b3c2a019ae3216efa399de5
1
2
3
4
export function formatPhoneNum (phoneNum: string | number) {
  const str = String(phoneNum)
  return str.substring(0, 3) + '****' + str.slice(-4)
}