I have an observable
someObjs$ = this.getData().pipe(
map((data: Data) => ({
a: true,
b: true,
c: true,
})
),
If a flag a user has set somewhere is false, I want to always return to true for a key even if that key doesn't exist once the Observable is unwrapped in the template.
Example,
someObj$ | async as obj
{{ obj['d'] }} // true