Code coverage report for string/hyphenate.js

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

All files » string/ » hyphenate.js
1 2 3 4 5 6 7 8 9 10 11 12 131           1 6 6   1    
define(['./slugify', './unCamelCase'], function(slugify, unCamelCase){
    /**
    * Replaces spaces with hyphens, split camelCase text, remove non-word chars, remove accents and convert to lower case.
    * @example hyphenate('loremIpsum dolor spéçïãl chârs') -> 'lorem-ipsum-dolor-special-chars'
    * @version 0.2.0 (2012/08/17)
    */
    function hyphenate(str){
        str = unCamelCase(str);
        return slugify(str, "-");
    }
    return hyphenate;
});