Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created April 6, 2020 23:49
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 shameemreza/11a9e94954801ab3c558c90b0b207f88 to your computer and use it in GitHub Desktop.
Save shameemreza/11a9e94954801ab3c558c90b0b207f88 to your computer and use it in GitHub Desktop.
blank() Helper
// We analyze if there are blank or null values
blank('');
blank(' '); //Here we have blank spaces
blank(null);
// If there is a blank value or blank spaces we get 'true'
blank(0);
blank(true);
blank(false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment