Skip to content

Commit

Permalink
Fixed eval() not returning a value
Browse files Browse the repository at this point in the history
  • Loading branch information
HynekPetrak committed Dec 27, 2016
1 parent 4f0a111 commit 5363523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion env/eval.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ eval = function() {
util_log("Calling eval() no.:", _eval_calls.length);
return _orig_eval(ns1);
}
return function eval(s) { /* [native code ] */ _(s)}
return function eval(s) { /* [native code ] */ return _(s)}
}();

0 comments on commit 5363523

Please sign in to comment.