upperFirst.js 140 B

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