We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c69925d commit 90aa148Copy full SHA for 90aa148
1 file changed
index.js
@@ -323,14 +323,6 @@ exports.lift2 = f => (F1, F2) => pipeline(F2)(
323
ap(map(exports.multiCurryN(2)(f))(F1))
324
)
325
326
-/**
327
- * Lift ternary function to act on values wraped inside CPS functions
328
- */
329
-exports.lift3 = f => (F1, F2, F3) => pipeline(F1)(
330
- ap(map(x=>y=>z=>f(x,y,z)))
331
-)
332
-
333
334
335
336
/* ----- CPS methods ----- */
0 commit comments