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