(value = "")
| 63 | } |
| 64 | |
| 65 | function shortValue(value = "") { |
| 66 | const text = String(value || ""); |
| 67 | return text ? `${text.slice(0, 4)}***${text.slice(-4)}` : ""; |
| 68 | } |
| 69 | |
| 70 | function getSignString(params) { |
| 71 | return Object.keys(params) |
no outgoing calls
no test coverage detected