Skip to content

Instantly share code, notes, and snippets.

@civet
Last active December 19, 2015 02:28
Show Gist options
  • Save civet/5882840 to your computer and use it in GitHub Desktop.
Save civet/5882840 to your computer and use it in GitHub Desktop.
AS3 trim()
package
{
public function trim(s:String):String {
return s ? s.replace(/^\s+|\s+$/gs, '') : "";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment