Skip to content

Commit 5a51986

Browse files
authored
Remove return {} from FFI functions (#18)
1 parent 584b304 commit 5a51986

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Effect.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ exports.bindE = function (a) {
1717
exports.untilE = function (f) {
1818
return function () {
1919
while (!f());
20-
return {};
2120
};
2221
};
2322

@@ -27,7 +26,6 @@ exports.whileE = function (f) {
2726
while (f()) {
2827
a();
2928
}
30-
return {};
3129
};
3230
};
3331
};

0 commit comments

Comments
 (0)