Files
video-gen/video-gen-admin/node_modules/string-convert/hyphen2camel.js
T
2026-05-25 17:08:18 +08:00

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;