EASYAIuniappNewUI/node_modules/licia/upperFirst.js
2025-02-08 18:50:38 +08:00

7 lines
140 B
JavaScript

exports = function(str) {
if (str.length < 1) return str;
return str[0].toUpperCase() + str.slice(1);
};
module.exports = exports;