upper-case-first.js 304 B

1234567891011121314151617
  1. var upperCase = require('upper-case')
  2. /**
  3. * Upper case the first character of a string.
  4. *
  5. * @param {String} str
  6. * @return {String}
  7. */
  8. module.exports = function (str, locale) {
  9. if (str == null) {
  10. return ''
  11. }
  12. str = String(str)
  13. return upperCase(str.charAt(0), locale) + str.substr(1)
  14. }