/** * Checks to see if a value is null OR undefined * @param {*} val - A value (of any type) * @returns {boolean} Whether or not the value is null or undefined */ export default function isNil(val: any): val is null | undefined