| 1 2 3 4 5 6 7 8 9 10 11 12 | 1 1 6 6 1 | define(['./slugify', './unCamelCase'], function(slugify, unCamelCase){
/**
* Replaces spaces with underscores, split camelCase text, remove non-word chars, remove accents and convert to lower case.
* @version 0.1.0
*/
function underscore(str){
str = unCamelCase(str);
return slugify(str, "_");
}
return underscore;
});
|