Skip to content

Instantly share code, notes, and snippets.

@jonkemp
Created October 11, 2013 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonkemp/6939721 to your computer and use it in GitHub Desktop.
Save jonkemp/6939721 to your computer and use it in GitHub Desktop.
Checks a string to see if it is empty. Returns false if it finds anything other than white space in a string. Otherwise it returns true.
function isEmpty(val) {
return (!/\S/.test(val));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment