bpms_site/.svn/pristine/df/df11a6b20ba8a86a3b15907966e580cda905766f.svn-base
2025-11-02 16:38:49 +03:30

9 lines
222 B
Plaintext

var hyphen2camel = function (str) {
return str
.toLowerCase()
.replace(/-[a-z]/g, function (match) {
return match.slice(1).toUpperCase() ;
});
};
module.exports = hyphen2camel;