UNPKG
geninq
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
A JavaScript version of the Linq library for Generators
github.com/PaulPopat/geninq
PaulPopat/geninq
geninq
/
dist
/
functions
/
geninq.js
8 lines
(7 loc)
•
177 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
Array
.
prototype
.
geninq
=
function
* () {
for
(
const
item
of
this
) {
yield
item; } };