(self: Context<any>, f: (map: Map<string, any>) => void)
| 520 | } |
| 521 | |
| 522 | const withFlat = <B>(self: Context<any>, f: (map: Map<string, any>) => void): Context<B> => { |
| 523 | const map = new Map(self.mapUnsafe) |
| 524 | f(map) |
| 525 | return makeUnsafe(map) |
| 526 | } |
| 527 | |
| 528 | // A private symbol so user code cannot forge a value that reads as absent |
| 529 | const notFound = Symbol() |
no test coverage detected