dfcreative/mustring

View on GitHub
capfirst.js

Summary

Maintainability
A
0 mins
Test Coverage
//aaa → Aaa
module.exports = function(str){
    str+='';
    if (!str) return str;
    return str[0].toUpperCase() + str.slice(1);
};