(phone = "")
| 57 | } |
| 58 | |
| 59 | function maskPhone(phone = "") { |
| 60 | return String(phone).replace(/^(\d{3})\d{4}(\d{4})$/, "$1****$2"); |
| 61 | } |
| 62 | |
| 63 | function shortValue(value = "") { |
| 64 | const text = String(value || ""); |
no outgoing calls
no test coverage detected