mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame contribute delete
216 Bytes
"use strict";
var ensureString = require("type/string/ensure");
module.exports = function () {
var input = ensureString(this);
if (!input) return input;
return input.charAt(0).toUpperCase() + input.slice(1);
};