(value: unknown)
| 28 | * Checks if a value is non-empty (not undefined, null, or empty string) |
| 29 | */ |
| 30 | export function isNonEmpty(value: unknown): boolean { |
| 31 | return value !== undefined && value !== null && value !== '' |
| 32 | } |
| 33 | |
| 34 | // ============================================================================ |
| 35 | // Tag/Value Parsing Utilities |
no outgoing calls
no test coverage detected