export default function isNull(val: unknown): boolean {
    return val === null;
}
