5 lines
196 B
JavaScript
5 lines
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);
|
||
|
};
|