def _is_null()

in cfn_tools/_config.py [0:0]


    def _is_null(value: Any) -> bool:
        if value is None:
            return True
        if (isinstance(value, str) is True) and (value.lower() in ("none", "null", "nil")):
            return True
        return False