uni-ticket-system/node_modules/licia/upperFirst.js

7 lines
140 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
exports = function(str) {
if (str.length < 1) return str;
return str[0].toUpperCase() + str.slice(1);
};
module.exports = exports;