Function
fromFlatLoopFail
(prefix: ReadonlyArray<string>, path: string)
Source from the content-addressed store, hash-verified
| 438 | |
| 439 | const fromFlatLoopFail = |
| 440 | (prefix: ReadonlyArray<string>, path: string) => (index: number): Either.Either<unknown, ConfigError.ConfigError> => |
| 441 | Either.left( |
| 442 | configError.MissingData( |
| 443 | prefix, |
| 444 | `The element at index ${index} in a sequence at path "${path}" was missing` |
| 445 | ) |
| 446 | ) |
| 447 | |
| 448 | /** @internal */ |
| 449 | export const mapInputPath = dual< |
Tested by
no test coverage detected