decapitalize.js 177 Bytes Raw Blame History Permalink 1 2 3 4 5 6 var makeString = require('./helper/makeString'); module.exports = function decapitalize(str) { str = makeString(str); return str.charAt(0).toLowerCase() + str.slice(1); };