(self: C.Context<Services>, tag: C.Reference<I, S>)
| 237 | |
| 238 | /** @internal */ |
| 239 | export const unsafeGetReference = <Services, I, S>(self: C.Context<Services>, tag: C.Reference<I, S>): S => { |
| 240 | return self.unsafeMap.has(tag.key) ? self.unsafeMap.get(tag.key) : getDefaultValue(tag) |
| 241 | } |
| 242 | |
| 243 | /** @internal */ |
| 244 | export const unsafeGet = dual< |
nothing calls this directly
no test coverage detected
searching dependent graphs…