Open North101 opened 2 years ago
Example:
interface Foo { foo?: string; } const foo1: Foo = { foo: undefined, } const foo2: Foo = {} console.log(is<Foo>(foo1)); // false console.log(is<Foo>(foo2)); // true
Should they not both be true?
Example:
Should they not both be true?