Marc Sharma

Results 1 comments of Marc Sharma

Even with the `!` postfix operator on get, typescript still throw an `undefined` error. MWE: ``` let m = new Map() if (m.get('a') === undefined) { m.set('a', 'foo') } let...