(self: any, map: any)
| 69 | map: (handler: (i: I) => Effect.Effect<A, E, R>) => (i: I) => Effect.Effect<A2, E2, R2> |
| 70 | ): RequestHandlerWithInput<I, A2, E2, R2, Request, Name> |
| 71 | } = (self: any, map: any): any => ({ |
| 72 | ...self, |
| 73 | handler: (i: any) => map(self.handler as (i: any) => Effect.Effect<any, any, any>)(i) |
| 74 | }) |
| 75 | |
| 76 | export function deepToRaw<T>(sourceObj: T): T { |
| 77 | const objectIterator = (input: any): any => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…