(self: Layer<A, E, R>)
| 2158 | * @since 2.0.0 |
| 2159 | */ |
| 2160 | export const fresh = <A, E, R>(self: Layer<A, E, R>): Layer<A, E, R> => |
| 2161 | fromBuildUnsafe((_, scope) => self.build(makeMemoMapUnsafe(), scope)) |
| 2162 | |
| 2163 | /** |
| 2164 | * Builds this layer and keeps it alive until the returned effect is interrupted. |
nothing calls this directly
no test coverage detected