(a: unknown, b: unknown, c: unknown)
| 9 | |
| 10 | describe("convertToFP", () => { |
| 11 | function fn(a: unknown, b: unknown, c: unknown) { |
| 12 | return "a b c" |
| 13 | .replace("a", String(a)) |
| 14 | .replace("b", String(b)) |
| 15 | .replace("c", String(c)); |
| 16 | } |
| 17 | |
| 18 | describe("arity of converted function === arity of initial function", () => { |
| 19 | it("allows arguments to be curried (and reverses their order)", () => { |
no outgoing calls
no test coverage detected