Skip to content

Instantly share code, notes, and snippets.

@sergeevyi
Created October 21, 2016 07:55
Show Gist options
  • Save sergeevyi/a242b9966627e46f538b2dc0eceb5aa1 to your computer and use it in GitHub Desktop.
Save sergeevyi/a242b9966627e46f538b2dc0eceb5aa1 to your computer and use it in GitHub Desktop.
isBlank()
function isBlank(value) {
return _.isEmpty(value) && !_.isNumber(value) || Number.isNaN(value);
}
function test() {
console.log( "null: "+isBlank(null) ); // => true
console.log( "undefined: "+isBlank(undefined) ); // => true
console.log( "1: "+isBlank(1) ); // => true
console.log( "0: "+isBlank(0) );
console.log( "blank string: "+isBlank("") );
console.log( "string sdfsdf: "+isBlank("sdfsdf") );
console.log( "[]: "+isBlank([]) );
console.log( "{}: "+isBlank({}) );
console.log( "NaN: "+isBlank(NaN) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment