UNPKG

d2-ui

Version:
8 lines (6 loc) 174 B
function hyphen2camel(hyphenString) { return hyphenString.replace(/-([a-z])/g, function(match) { return match[1].toUpperCase(); }); } module.exports = hyphen2camel;