-
Notifications
You must be signed in to change notification settings - Fork 156
Closed
Labels
Description
If you have a named function that curries (I think that's how you'd name it?), the function isn't scoped properly.
:abc (x,y) --> x + y
Expected:
var abc;
abc = (curry$(function(x, y){
return x + y;
}));
Actual:
(curry$(function abc(x, y){
return x + y;
}));
Reactions are currently unavailable