Code coverage report for string/endsWith.js

Statements: 100% (7 / 7)      Branches: 100% (0 / 0)      Functions: 100% (3 / 3)      Lines: 100% (6 / 6)     

All files » string/ » endsWith.js
1 2 3 4 5 6 7 8 9 10 11 12 13 141       1 8 8   8     1    
define(['../lang/toString'], function(toString) {
    /**
     * Checks if string ends with specified suffix.
     */
    function endsWith(str, suffix) {
        str = toString(str);
        suffix = toString(suffix);
 
        return str.indexOf(suffix, str.length - suffix.length) !== -1;
    }
 
    return endsWith;
});