blob: 6aa2673ed80e01918dc77a3366133b5b4df07d3d [file] [log] [blame]
var makeString = require('./helper/makeString');
module.exports = function decapitalize(str) {
str = makeString(str);
return str.charAt(0).toLowerCase() + str.slice(1);
};