Sha256: cf11c02a79600aeb5daf1243db2bfad92744c2218fb5192c8b91f170a98007bd

Contents?: true

Size: 398 Bytes

Versions: 69

Compression:

Stored size: 398 Bytes

Contents

define(['../lang/toString', './slugify', './unCamelCase'], function(toString, slugify, unCamelCase){
    /**
     * Replaces spaces with hyphens, split camelCase text, remove non-word chars, remove accents and convert to lower case.
     */
    function hyphenate(str){
        str = toString(str);
        str = unCamelCase(str);
        return slugify(str, "-");
    }

    return hyphenate;
});

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.18 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.17 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.16 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.15 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.14 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.13 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.12 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.11 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.10 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.9 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.8 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.7 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.6 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.5 node_modules/bower/node_modules/mout/src/string/hyphenate.js
trusty-festivity-extension-2.5.4 node_modules/bower/node_modules/mout/src/string/hyphenate.js