fix
GuLiMmo
2024-04-26 7ecb8f3f69d04381ac6d2014f32f4305f3536835
1
2
3
4
export function formatPhoneNum (phoneNum: string | number) {
  const str = String(phoneNum)
  return str.substring(0, 3) + '****' + str.slice(-4)
}