Is there a framework or post processor for JavaScript that supports lambda syntax like in C#?
Function definitions in CoffeeScript seem to look like lambdas but I ha
I started creating an extender for jQuery which does exactly the thing you are asking. JS-Lambda
For example in C#:
coll.TakeWhile(x => x.index < 3);
Looks like:
$(coll).TakeWhile("x => x.index < 3");