UNPKG
smooth-text-rotator
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.1
0.1.0
0.0.2
0.0.1
Super simple JS library for rotating text with smooth animations
branchard/smooth-text-rotator
smooth-text-rotator
/
src
/
type-guards.ts
4 lines
(3 loc)
•
139 B
text/typescript
View Raw
1
2
3
4
export
function
isArrayOfString
(
arg
:
unknown
): arg is
string
[] {
return
Array
.
isArray
(arg) && arg.
every
(
i
=>
(
typeof
i ===
"string"
)); }