Skip to content

Instantly share code, notes, and snippets.

@lukebayes
Created March 18, 2009 06:38
Show Gist options
  • Save lukebayes/80975 to your computer and use it in GitHub Desktop.
Save lukebayes/80975 to your computer and use it in GitHub Desktop.
package {
public function underscore(camelCased:String):String {
return camelCased.replace(/([a-z])([A-Z])/g, '$1_$2').toLowerCase();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment