(phone = "")
| 86 | } |
| 87 | |
| 88 | function maskPhone(phone = "") { |
| 89 | return String(phone).replace(/^(\d{3})\d{4}(\d{4})$/, "$1****$2"); |
| 90 | } |
| 91 | |
| 92 | function assetValue(memberInfo = {}, keys = [], names = []) { |
| 93 | const assets = Array.isArray(memberInfo.assets) ? memberInfo.assets : []; |
no outgoing calls
no test coverage detected