mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
11 lines
No EOL
159 B
JavaScript
11 lines
No EOL
159 B
JavaScript
define([
|
|
],
|
|
|
|
function() {
|
|
|
|
String.prototype.toUpperCaseFirstChar = function () {
|
|
var f = this.charAt(0).toUpperCase();
|
|
return f + this.substr(1);
|
|
}
|
|
|
|
}); |