From 34ad493fc5c07ea60025e527d65c00fcd577cd10 Mon Sep 17 00:00:00 2001 From: rowan Date: Mon, 31 Mar 2025 07:54:07 -0500 Subject: [PATCH] oops remove testing stuff --- src/curry.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/curry.js b/src/curry.js index 2e4782d..a193971 100644 --- a/src/curry.js +++ b/src/curry.js @@ -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) -