Files
cartlog-admin/node_modules/string-convert/hyphen2camel.js
2026-01-01 15:25:19 +05:30

9 lines
222 B
JavaScript

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