/** * * @param any * @returns */ const isDef = (val: any) => { return typeof val !== 'undefined'; }; export default isDef;