(value = "")
| 69 | } |
| 70 | |
| 71 | function maskName(value = "") { |
| 72 | const text = String(value || ""); |
| 73 | return text.length > 10 ? `${text.slice(0, 4)}***${text.slice(-3)}` : text; |
| 74 | } |
| 75 | |
| 76 | class Task { |
| 77 | constructor(env) { |
no outgoing calls
no test coverage detected