latest updates
[namibia] / public / js / app / string-helpers.js
1 ;(function(){
2
3   String.prototype.capitalize = function(){
4     return this.charAt(0).toUpperCase() + this.slice(1);
5   };
6
7 })();