Sha256: 11875a0c9ec42b39e74ad56fbbdbd9b11de4b6f1fbc5b00ab09f9b6f3a456613

Contents?: true

Size: 428 Bytes

Versions: 69

Compression:

Stored size: 428 Bytes

Contents

var toString = require('../lang/toString');
var slugify = require('./slugify');
var unCamelCase = require('./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, "-");
    }

    module.exports = hyphenate;

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.5.3 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.5.2 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.5.1 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.5.0 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.4.6 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.4.5 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.4.4 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.4.3 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.4.2 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.4.1 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.4.0 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.3.30 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.3.29 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.3.28 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.3.27 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.3.26 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.3.25 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.3.24 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.3.23 node_modules/bower/node_modules/mout/string/hyphenate.js
trusty-festivity-extension-2.3.22 node_modules/bower/node_modules/mout/string/hyphenate.js