(data: any, minLength = 1)
| 72 | } |
| 73 | |
| 74 | export function isStringOfMinLength(data: any, minLength = 1): boolean { |
| 75 | return typeof data === 'string' && data.length >= minLength; |
| 76 | } |
| 77 | |
| 78 | |
| 79 | export function isStringOfAtLeast1Len(data: any): boolean { |
no outgoing calls
no test coverage detected