(str: string | undefined | null)
| 125 | } |
| 126 | |
| 127 | export const isStringEmpty = (str: string | undefined | null): boolean => { |
| 128 | return !str || str.trim().length === 0; |
| 129 | }; |
| 130 | |
| 131 | export const areBooleansEqual = ( |
| 132 | a: boolean | undefined | null, |
no outgoing calls
no test coverage detected