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

9 lines
216 B
Plaintext

var camel2hyphen = function (str) {
return str
.replace(/[A-Z]/g, function (match) {
return '-' + match.toLowerCase();
})
.toLowerCase();
};
module.exports = camel2hyphen;