diff --git a/src/Effect.js b/src/Effect.js index 940a106..b2e39a2 100644 --- a/src/Effect.js +++ b/src/Effect.js @@ -17,7 +17,6 @@ exports.bindE = function (a) { exports.untilE = function (f) { return function () { while (!f()); - return {}; }; }; @@ -27,7 +26,6 @@ exports.whileE = function (f) { while (f()) { a(); } - return {}; }; }; };