File size: 177 Bytes
bc20498 |
1 2 3 4 5 6 7 |
var makeString = require('./helper/makeString');
module.exports = function decapitalize(str) {
str = makeString(str);
return str.charAt(0).toLowerCase() + str.slice(1);
};
|
bc20498 |
1 2 3 4 5 6 7 |
var makeString = require('./helper/makeString');
module.exports = function decapitalize(str) {
str = makeString(str);
return str.charAt(0).toLowerCase() + str.slice(1);
};
|