Skip to content

Instantly share code, notes, and snippets.

@lukebayes
Created March 18, 2009 06:37
Show Gist options
  • Save lukebayes/80971 to your computer and use it in GitHub Desktop.
Save lukebayes/80971 to your computer and use it in GitHub Desktop.
package {
public function camelcase(str:String):String {
return capitalize( str.replace(/_([\w])/gi, function(...args):String {
return args[1].toUpperCase();
}) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment