Skip to content

Instantly share code, notes, and snippets.

@lukebayes
Created March 18, 2009 06:37
Show Gist options
  • Save lukebayes/80972 to your computer and use it in GitHub Desktop.
Save lukebayes/80972 to your computer and use it in GitHub Desktop.
package {
public function capitalize(text:String):String {
return text.substr(0, 1).toUpperCase() + text.substr(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment