UNPKG
text-to-generate
Version:
latest (2.1.0)
2.1.0
2.0.0
1.0.5
1.0.0
Text Generator by Muhammad Fauzan
text-to-generate
/
lib
/
spongebob.js
7 lines
(6 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
module
.
exports
=
(
text
) =>
{
let
m =
""
;
for
(
let
i =
0
; i < text.
length
; i++) m += i %
2
!==
0
? text[i].
toUpperCase
() : text[i].
toLowerCase
();
return
m; };