"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var hyphenToCamelCase = function hyphenToCamelCase(str) {
return str.replace(/\b-([a-z])/g, function (all, char) {
return char.toUpperCase();
});
};
exports.default = hyphenToCamelCase;