Function
evaluateAt
(
self: Config<T>,
provider: ConfigProvider.ConfigProvider,
pathPrefix: Path
)
Source from the content-addressed store, hash-verified
| 173 | } |
| 174 | |
| 175 | const evaluateAt = <T>( |
| 176 | self: Config<T>, |
| 177 | provider: ConfigProvider.ConfigProvider, |
| 178 | pathPrefix: Path |
| 179 | ): Effect.Effect<Resolution<T>, EvaluationFailure> => (self as ConfigImpl<T>).evaluator(provider, pathPrefix) |
| 180 | |
| 181 | const resolved = <T>(value: T, hasInput: boolean): Resolution<T> => ({ |
| 182 | _tag: "Resolved", |
Tested by
no test coverage detected