(...fns: ApplyFunctionProps[])
| 52 | }; |
| 53 | |
| 54 | const composeFunctions = (...fns: ApplyFunctionProps[]) => |
| 55 | fns.map(applyFunction).reduce((f, g) => x => f(x).then(g)); |
| 56 | |
| 57 | // Test helpers parse sources.contents across all files. Without this boundary, |
| 58 | // an index.ts first-line declaration can be concatenated onto empty/no-newline |
no outgoing calls
no test coverage detected