(input: any)
| 344 | } |
| 345 | |
| 346 | export function isArrayOfString(input: any): input is string[] { |
| 347 | return isArray(input) && input.every(isString); |
| 348 | } |
| 349 | |
| 350 | // Validates whether the given object is a valid mapping of key and value type. |
| 351 | // EX: {"key": true, "key2": false} should return true for keyType = string and valueType = boolean. |
no test coverage detected