deno/tests/config.ts
2019-04-29 07:58:31 -07:00

6 lines
100 B
TypeScript

const map = new Map<string, { foo: string }>();
if (map.get("bar").foo) {
console.log("here");
}