Created
July 11, 2016 20:40
-
-
Save miclaus/6ad9ddcc59fea2563c2cdd959e5fa1e6 to your computer and use it in GitHub Desktop.
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 lc = (str) => { | |
if ( typeof str === 'string' ) | |
return str.toLowerCase() | |
return str | |
} | |
export default lc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment