Code coverage report for saguaro/lib/utils.js

Statements: 100% (2 / 2)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (2 / 2)      Ignored: none     

All files » saguaro/lib/ » utils.js
1 2 3 4 5  1 3    
 
exports.upperCaseFirst = function (str) {
    return str.charAt(0).toUpperCase() + str.substr(1);
};