File size: 188 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
//@flow
export const hasStringElements = (arr: Array<mixed> | mixed) => {
if (Array.isArray(arr)) return arr.some(elem => hasStringElements(elem));
return typeof arr === 'string';
};
|