Last active
November 17, 2020 09:01
-
-
Save omzi/7cca83e6d94645f4cea52c1a4319de66 to your computer and use it in GitHub Desktop.
Returns a string with inversed cases
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
/** | |
* Returns a string with inversed cases | |
* @param {String} string The 'string' to inverse the cases of its characters | |
*/ | |
const caseInverse = string => string.split('').map(letter => letter.toUpperCase() === letter ? letter.toLowerCase() : letter.toUpperCase()).join(''); | |
module.exports = caseInverse; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment