A Type Guard to check if given value type is equal to "undefined"
import { isTypeUndefined } from 'type-guard-helpers'const test = 'foobar' as unknown;if (isTypeUndefined(test)) { test; // undefined}
Generated using TypeDoc
A Type Guard to check if given value type is equal to "undefined"
Example