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
/
dist
/
type-guards.js
8 lines
•
301 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
isArrayOfString
=
void
0
;
function
isArrayOfString
(
arg
) {
return
Array
.
isArray
(arg) && arg.
every
(
i
=>
(
typeof
i ===
"string"
)); }
exports
.
isArrayOfString
= isArrayOfString;
//# sourceMappingURL=type-guards.js.map