UNPKG

catan-client

Version:

Settlers of Catan Client Implementation

8 lines (7 loc) 228 B
"use strict"; module.exports = { hyphenToFunctionName: function(str){ let string = str.replace(/-([a-z])/g, function (g) { return g[1].toUpperCase(); }); return "on" + string.charAt(0).toUpperCase() + string.slice(1); } }