diff --git a/app/Lib/Utilities/Extensions.js b/app/Lib/Utilities/Extensions.js new file mode 100644 index 0000000..edc97f7 --- /dev/null +++ b/app/Lib/Utilities/Extensions.js @@ -0,0 +1,11 @@ +define([ +], + +function() { + + String.prototype.toUpperCaseFirstChar = function () { + var f = this.charAt(0).toUpperCase(); + return f + this.substr(1); + } + +}); \ No newline at end of file