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