oops remove testing stuff

This commit is contained in:
Rowan 2025-03-31 07:54:07 -05:00
parent 9dc971fbf6
commit 34ad493fc5

View file

@ -69,15 +69,3 @@ export function curry(func) {
} }
} }
const a = curry(
/**
* @param {number} a
* @param {number} b
* @param {number} c
*/
(a, b, c) => a + b + c
)
const b = a(1)
const c = b(1)