UNPKG

fregejs

Version:

A propositional logic library written in Typescript

4 lines (3 loc) 130 B
export function isArrayString(array: Array<any>): array is string[] { return array.every((item) => typeof item === 'string'); }