Guest User

Untitled

a guest
Sep 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /**
  2. * Set of funcitons that trims a string in Javascipt :)
  3. **/
  4.  
  5. function trim(stringToTrim) {
  6. return stringToTrim.replace(/^\s+|\s+$/g,"");
  7. }
  8. function ltrim(stringToTrim) {
  9. return stringToTrim.replace(/^\s+/,"");
  10. }
  11. function rtrim(stringToTrim) {
  12. return stringToTrim.replace(/\s+$/,"");
  13. }
Add Comment
Please, Sign In to add comment