(first: ConfigProvider, second: ConfigProvider)
| 346 | const Proto = { |
| 347 | ...PipeInspectableProto, |
| 348 | toJSON(this: ConfigProvider) { |
| 349 | return { |
| 350 | _id: "ConfigProvider" |
| 351 | } |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | const identityPath = (path: Path): Path => path |
| 356 | |
| 357 | function makeProvider( |
| 358 | load: (path: Path) => Effect.Effect<Node | undefined, SourceError>, |
| 359 | mapInput: (f: (path: Path) => Path) => ConfigProvider |
| 360 | ): ConfigProvider { |
| 361 | const self = Object.create(Proto) |
| 362 | self.load = load |
no test coverage detected
searching dependent graphs…