(value = "")
| 113 | } |
| 114 | |
| 115 | function shortValue(value = "") { |
| 116 | const text = String(value || ""); |
| 117 | return text ? `${text.slice(0, 4)}***${text.slice(-4)}` : ""; |
| 118 | } |
| 119 | |
| 120 | function uuid() { |
| 121 | return crypto.randomUUID().replace(/-/g, ""); |
no outgoing calls
no test coverage detected