(s: string | undefined | null)
| 11 | } |
| 12 | |
| 13 | export function isEmpty(s: string | undefined | null): boolean { |
| 14 | return (s?.length ?? 0) < 1; |
| 15 | } |
| 16 | |
| 17 | // Clips the strings to first N characters and ellipsis. |
| 18 | // For example, |
no outgoing calls
no test coverage detected