Code coverage report for string/lowerCase.js

Statements: 100% (5 / 5)      Branches: 100% (2 / 2)      Functions: 100% (3 / 3)      Lines: 100% (4 / 4)     

All files » string/ » lowerCase.js
1 2 3 4 5 6 7 8 9 10 111         1 13   1    
define(function(){
    /**
     * "Safer" String.toLowerCase()
     * @version 0.1.0 (2011/10/19)
     */
    function upperCase(str){
        return (str || '').toLowerCase();
    }
    return upperCase;
});