mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
220 Bytes
"use strict";
var ensureStringifiable = require("../../object/validate-stringifiable-value");
module.exports = function () {
var str = ensureStringifiable(this);
return str.charAt(0).toLowerCase() + str.slice(1);
};