Skip to content

Instantly share code, notes, and snippets.

@avinashkoyyana
Forked from scodx/trim.js
Last active December 15, 2015 09:38
Show Gist options
  • Save avinashkoyyana/5239459 to your computer and use it in GitHub Desktop.
Save avinashkoyyana/5239459 to your computer and use it in GitHub Desktop.
Set of funcitons that trims a string in Javascipt
/**
* Set of funcitons that trims a string in Javascipt :)
**/
function trim(stringToTrim) {
return stringToTrim.replace(/^\s+|\s+$/g,"");
}
function ltrim(stringToTrim) {
return stringToTrim.replace(/^\s+/,"");
}
function rtrim(stringToTrim) {
return stringToTrim.replace(/\s+$/,"");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment