blob: 78ca4a7c328fe350b38a3ea1373337e7b1c792e6 [file] [log] [blame]
function test() {
var iterable = (function*(){ yield 1; yield 2; yield 3; }());
return Array.from(iterable) + '' === "1,2,3";
}
if (!test())
throw new Error("Test failed");