Skip to content

Instantly share code, notes, and snippets.

@tzwel
Created February 28, 2023 08:46
Show Gist options
  • Save tzwel/042ac485152a28161617fc922c7e7324 to your computer and use it in GitHub Desktop.
Save tzwel/042ac485152a28161617fc922c7e7324 to your computer and use it in GitHub Desktop.
last resort empty string validation
"is this string empty?"
.replace(/[             ᠎ㅤ‏‏‎‎​]/g, '')
.replace(/\r?\n|\r/g, '')
.replace(/<\/?[^>]+(?:>|$)?/g, '').trim().length === 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment