vitro/webapp/web/js/extensions/String.js

5 lines
No EOL
196 B
JavaScript

/* $This file is distributed under the terms of the license in /doc/license.txt$ */
String.prototype.capitalize = function() {
return this.substring(0,1).toUpperCase() + this.substring(1);
};