UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

9 lines (6 loc) 255 B
// Modified version of: // https://github.com/react-bootstrap/dom-helpers/blob/v2.4.0/src/util/camelize.js var rHyphen = /-(.)/g; module.exports = function camelize(string) { return string.replace(rHyphen, function(_, chr) { chr.toUpperCase(); }); };