Sha256: b912d209697ad93fee559ea925a74b77a46fb41f7b73509770666b3ada68162c

Contents?: true

Size: 283 Bytes

Versions: 69

Compression:

Stored size: 283 Bytes

Contents

define(['../lang/toString'], function(toString){
    /**
     * Replaces hyphens with spaces. (only hyphens between word chars)
     */
    function unhyphenate(str){
        str = toString(str);
        return str.replace(/(\w)(-)(\w)/g, '$1 $3');
    }
    return unhyphenate;
});

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.3.1 node_modules/bower/node_modules/mout/src/string/unhyphenate.js
trusty-festivity-extension-2.3.0 node_modules/bower/node_modules/mout/src/string/unhyphenate.js
entangled-0.0.16 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unhyphenate.js
entangled-0.0.15 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unhyphenate.js
entangled-0.0.14 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unhyphenate.js
entangled-0.0.13 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unhyphenate.js
entangled-0.0.12 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unhyphenate.js
entangled-0.0.11 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unhyphenate.js
entangled-0.0.10 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unhyphenate.js