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

6 lines
129 B
JavaScript

exports = function(str) {
return str.charAt(0).toUpperCase() + str.substring(1).toLowerCase();
};
module.exports = exports;