{"ScriptPreparationCode":"var testIterable = function* generateIterable() {\r\n for (let i = 0; i \u003C 100; i\u002B\u002B) {\r\n yield i;\r\n }\r\n}","TestCases":[{"Name":"Array.from","Code":"const arr = Array.from(testIterable());","IsDeferred":false},{"Name":"Array slice","Code":"const arrs = Array.prototype.slice.call(testIterable());","IsDeferred":false}]}