UNPKG

132 BJavaScriptView Raw
1module.exports = function(str){
2 return str.length?
3 str.charAt(0).toLowerCase() + str.substring(1):
4 str
5}
\No newline at end of file