(value: any)
| 15 | trim ? value.trim().length > 0 : value.length > 0; |
| 16 | |
| 17 | const isNonStringValid = (value: any): boolean => |
| 18 | value !== void 0 && value !== null; |
| 19 | |
| 20 | const isValidField = (value: any, trim: boolean): boolean => |
| 21 | typeof value === 'string' |
no outgoing calls
no test coverage detected
searching dependent graphs…