Skip to content

Instantly share code, notes, and snippets.

@elieandraos
Created June 24, 2013 10:50
Show Gist options
  • Save elieandraos/5849264 to your computer and use it in GitHub Desktop.
Save elieandraos/5849264 to your computer and use it in GitHub Desktop.
Trim a string
function trim(stringToTrim) {
return stringToTrim.replace(/^\s+|\s+$/g,"");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment