javascript-coroutines icon indicating copy to clipboard operation
javascript-coroutines copied to clipboard

a demonstration of using coroutines to handle Javascript events

Results 1 javascript-coroutines issues
Sort by recently updated
recently updated
newest added

Return the value of `o.next(x)` ``` function coroutine(f) { var o = f(); o.next(); return function(x) { return o.next(x); } } ```