Node.js examples for String:Case
Split Camel Case
splitCamelCase: function (str) { return str.replace(/([a-z](?=[A-Z]))/g, '$1 '); },