UNPKG

smooth-text-rotator

Version:

Super simple JS library for rotating text with smooth animations

4 lines (3 loc) 139 B
export function isArrayOfString(arg: unknown): arg is string[] { return Array.isArray(arg) && arg.every(i => (typeof i === "string")); }