7 ms·
Fortunately, with a bit of hacking, this style of syntax is possible without generators :) (I'm hoping to open source a library I wrote that works all the way b
by v13inc 13y ago
Fortunately, with a bit of hacking, this style of syntax is possible without generators :) (I'm hoping to open source a library I wrote that works all the way back to IE6)
Here's your example rewritten in the 'monads' library (I probably need a better name):
monads(function() {
var ra = opA.defer();
var rb = opB.defer();
var result = opC(ra(), rb());
});
- dangoor 13y agoIs that open source? I'd be interested in taking a look.