Tom Van Cutsem
Tom Van Cutsem
Re. the `convertArgumentToProxy` method: any specific reason why the wetHandler/dryHandler objects themselves must be passed, rather than their symbolic names? Also, how about explicitly naming the parameters (a la Smalltalk...
Given the following code using a fresh checkout of the repository on node v0.10.26: ``` javascript var windows = eep.EventWorld.make().windows(); var win = windows.sliding(eep.Stats.min, 3); win = windows.ordered(win); win.on('emit', function(value)...
A common mistake in JS is to extract a method from an object (as a first-class function value), then call the function without providing a binding for `this`. Example: ```...