Created
June 21, 2019 09:39
-
-
Save sambeevors/e7e1bb9291d3fb2072ffa01bffedad7d to your computer and use it in GitHub Desktop.
tHiS Is a sTuPiD IdEa
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const toSpongeCase = string => | |
[...string] | |
.map((x, i) => x[`to${i % 2 ? 'Upper' : 'Lower'}Case`]()) | |
.join('') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment