Skip to content

Instantly share code, notes, and snippets.

@sergioccrr
Created April 26, 2022 17:44
Show Gist options
  • Save sergioccrr/2d6e8b568f98f988474d12dc9e1d5d2b to your computer and use it in GitHub Desktop.
Save sergioccrr/2d6e8b568f98f988474d12dc9e1d5d2b to your computer and use it in GitHub Desktop.
String.prototype.cleanSpaces = function(str) {
if (!str) {
str = this;
}
return str.replace(/\s+/g, ' ').trim();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment