>>> from caseutil import CASES, is_case, to_case

Empty string does not match any case:

>>> any(is_case(c, '') for c in CASES)
False

Empty string is converted to empty string:

>>> set(to_case(c, '') for c in CASES)
{''}
