import { AnyObject } from "./types" /** * Removes all `undefined` values from a given object * @param obj - An Object from which to copy and remove undefined * @returns A copy of the original Object, but without any `undefined` values */ export default function omitUndefined(obj: T): T