UNPKG
iterizerjs
Version:
latest (0.1.0)
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
Expressive & concise code using ES6 iterables
github.com/dchambers/IterizerJs
dchambers/IterizerJs
iterizerjs
/
lib
/
iterable-array.js
9 lines
(6 loc)
•
131 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
function
*
iterableArray
(
array
)
{
for
(
var
i =
0
; i <
array
.length; ++i) {
yield
array
[i]; } } module.exports = iterableArray;