1 2 3 4 5
.pragma library function capitalize(str) { return str.substr(0, 1).toUpperCase() + str.substr(1); }