(value: any)
| 42 | } |
| 43 | |
| 44 | function isnullorEmpty(value: any) { |
| 45 | if (value == null) return true; //double equal sign to also catch undefined |
| 46 | if (typeof value === 'string' && value.length === 0) return true; |
| 47 | return false; |
| 48 | } |
| 49 | |
| 50 | interface SearchExpressionLowercase extends SearchExpression { |
| 51 | column: Column; |
no outgoing calls
no test coverage detected