DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
177 Bytes
var makeString = require('./helper/makeString');
module.exports = function decapitalize(str) {
str = makeString(str);
return str.charAt(0).toLowerCase() + str.slice(1);
};