UNPKG

mongorilla

Version:

Mongorilla is a simple, clean, and powerful NodeJS based content moderator for MongoDB.

10 lines (7 loc) 226 B
define([], function () { String.prototype.toCamelCase = function () { return this.split(/\W+/g).map(function (w) { return w.substr(0, 1).toUpperCase() + w.substr(1); }).join(' '); }; });