更新
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
exports = function(str) {
|
||||
if (str.length < 1) return str;
|
||||
return str[0].toUpperCase() + str.slice(1);
|
||||
};
|
||||
|
||||
module.exports = exports;
|
||||
Reference in New Issue
Block a user