export function removeUndefined(t: T | undefined): t is T { return typeof t !== 'undefined'; }