Code coverage report for string/crop.js

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

All files » string/ » crop.js
1 2 3 4 5 6 7 8 9 10 11 121       1 6 6     1    
define(['../lang/toString', './truncate'], function (toString, truncate) {
    /**
     * Truncate string at full words.
     */
     function crop(str, maxChars, append) {
         str = toString(str);
         return truncate(str, maxChars, append, true);
     }
 
     return crop;
});