What is Nostr?
Axel Rauschmayer /
npub17at…75qq
2024-01-24 13:50:34

Axel Rauschmayer on Nostr: #TypeScript helper function to safely access objects used as dictionaries: function ...

#TypeScript helper function to safely access objects used as dictionaries:

function getOwn<K extends string | number | symbol, V>(obj: Record<K, V>, key: K): undefined | V {
if (!Object.hasOwn(obj, key)) {
return undefined;
}
return obj[key];
}
Author Public Key
npub17at4s5zn2gryfckwn6xpmwuaejhdksd93nk8rtzwjsjhcm8pu54s8875qq