I\'ve got this code that checks for the empty or null string. It\'s working in testing.
eitherStringEmpty= (email, password) -> emailEmpty = not email? or
Yup:
passwordNotEmpty = not not password
or shorter:
passwordNotEmpty = !!password