Skip to content

Instantly share code, notes, and snippets.

@DejanBelic
Created March 2, 2019 09:41
Show Gist options
  • Save DejanBelic/141ef5c2a00aa367cea485518e140367 to your computer and use it in GitHub Desktop.
Save DejanBelic/141ef5c2a00aa367cea485518e140367 to your computer and use it in GitHub Desktop.
Is empty function javascript
const isEmpty = value =>
value === undefined ||
value === null ||
(typeof value === "object" && Object.keys(value).length === 0) ||
(typeof value === "string" && value.trim().length === 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment