UNPKG

164 BJavaScriptView Raw
1'use strict'
2
3module.exports = function(value){
4 return value.length?
5 value.charAt(0).toUpperCase() + value.substring(1):
6 value
7}
\No newline at end of file