]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/hyphen-to-camel.js
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / node-gyp / node_modules / path-array / node_modules / array-index / node_modules / es6-symbol / node_modules / es5-ext / string / # / hyphen-to-camel.js
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); };