You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

8 lines
221 B

'use strict';
var replace = String.prototype.replace
, re = /-([a-z0-9])/g
, toUpperCase = function (m, a) { return a.toUpperCase(); };
module.exports = function () { return replace.call(this, re, toUpperCase); };