UNPKG

jsctags

Version:
15 lines (11 loc) 256 B
function* foo() { var index = 0, out while (index <= 2) out = yield index++ out //: string } var it = foo() it.next("hi") //:: {done: bool, value: number} function* g1() { yield true } function* g2() { yield* g1() } g2().next().value //: bool