/** * A utility function that can be utilized within validator functions to determine if a value is defined. * @returns returns `false` if the value is `undefined`, `null`, `[]`, `''`, or an invalid Date. */ export default function isDefined(value: unknown): boolean;