UNPKG

babel-plugin-react-svg

Version:
15 lines (12 loc) 373 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hyphenToCamel = hyphenToCamel; exports.namespaceToCamel = namespaceToCamel; function hyphenToCamel(name) { return name.replace(/-([a-z])/g, g => g[1].toUpperCase()); } function namespaceToCamel(namespace, name) { return namespace + name.charAt(0).toUpperCase() + name.slice(1); }