capitalize.js 129 B

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