UNPKG

130 BJavaScriptView Raw
1"use strict";
2
3module.exports = function(str) {
4 if(!str)
5 return '';
6 return str.charAt(0).toUpperCase() + str.slice(1);
7};