8928b02497f1a2059d2726e658a64d8a4bd1641d
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 var replace = String.prototype.replace
4
5   , re = /-([a-z0-9])/g
6   , toUpperCase = function (m, a) { return a.toUpperCase(); };
7
8 module.exports = function () { return replace.call(this, re, toUpperCase); };