UNPKG

yielding

Version:
11 lines (9 loc) 194 B
var Y = require('..'); // Sync example var b = Y(function* () { var a = yield 1; var b = yield 2; return a + b; }); console.log( b.once() ); // 1 console.log( b() ); // 3