UNPKG
@nosana/kit
Version:
latest (2.2.10)
2.2.10
2.2.7
2.2.6
2.2.4
2.2.2
2.2.0
2.1.10
2.1.8
2.1.7
2.1.6
2.1.5
2.1.4
2.1.2
2.1.0
2.0.69
2.0.68
2.0.66
2.0.62
2.0.61
2.0.60
2.0.59
2.0.58
2.0.57
2.0.56
2.0.53
2.0.52
2.0.51
2.0.50
2.0.47
2.0.46
2.0.44
2.0.39
2.0.38
2.0.35
2.0.32
2.0.30
2.0.28
2.0.27
2.0.26
2.0.25
2.0.23
2.0.19
2.0.18
2.0.17
2.0.16
2.0.15
2.0.14
2.0.13
2.0.12
2.0.11
2.0.10
2.0.9
1.0.10
1.0.9
1.0.8
1.0.7
1.0.3
1.0.2
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
Nosana KIT
@nosana/kit
/
dist
/
utils
/
convertStringToIterable.js
7 lines
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
covertStringToIterable
(
input
) {
return
input .
split
(
','
) .
map
(
(
s
) =>
Number
(s.
trim
())) .
filter
(
(
n
) =>
!
isNaN
(n)); }
//# sourceMappingURL=convertStringToIterable.js.map