Skip to content

Instantly share code, notes, and snippets.

@JavaScript-Packer
Created July 24, 2015 10:00
Show Gist options
  • Save JavaScript-Packer/74476abb718ce47b2f1f to your computer and use it in GitHub Desktop.
Save JavaScript-Packer/74476abb718ce47b2f1f to your computer and use it in GitHub Desktop.
Switch uppercase with lowercase and vice versa...
function swapcase(t) {
return t.replace(/([a-z]+)|([A-Z]+)/g, function(t, w) {
return w ? t.toUpperCase() : t.toLowerCase();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment