Newer
Older
vmk-demo-bot / frontend / node_modules / es5-ext / string / # / hyphen-to-camel.js
@eugene-sukhodolskiy eugene-sukhodolskiy 18 days ago 224 bytes init
"use strict";

var replace = String.prototype.replace, re = /-([a-z0-9])/g;
var toUpperCase = function (ignored, a) { return a.toUpperCase(); };

module.exports = function () { return replace.call(this, re, toUpperCase); };