export function d (input: T | undefined): T { if (typeof input !== "undefined") return input; else throw new Error("Input value is undefined (d() fn)"); }