Created
October 21, 2016 07:55
-
-
Save sergeevyi/a242b9966627e46f538b2dc0eceb5aa1 to your computer and use it in GitHub Desktop.
isBlank()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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