Sha256: e3236eea62a880c6a0d020f753c169f08c7f0324bef8c594e9ad002327e00550

Contents?: true

Size: 578 Bytes

Versions: 69

Compression:

Stored size: 578 Bytes

Contents

define(['../lang/toString'], function(toString){

    var CAMEL_CASE_BORDER = /([a-z\xE0-\xFF])([A-Z\xC0\xDF])/g;

    /**
     * Add space between camelCase text.
     */
    function unCamelCase(str, delimiter){
        if (delimiter == null) {
            delimiter = ' ';
        }

        function join(str, c1, c2) {
            return c1 + delimiter + c2;
        }

        str = toString(str);
        str = str.replace(CAMEL_CASE_BORDER, join);
        str = str.toLowerCase(); //add space between camelCase text
        return str;
    }
    return unCamelCase;
});

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/unCamelCase.js
trusty-festivity-extension-2.3.0 node_modules/bower/node_modules/mout/src/string/unCamelCase.js
entangled-0.0.16 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unCamelCase.js
entangled-0.0.15 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unCamelCase.js
entangled-0.0.14 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unCamelCase.js
entangled-0.0.13 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unCamelCase.js
entangled-0.0.12 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unCamelCase.js
entangled-0.0.11 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unCamelCase.js
entangled-0.0.10 spec/dummy/public/node_modules/bower/node_modules/mout/src/string/unCamelCase.js