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
/
empty.js
10 lines
(9 loc)
•
258 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
Empty
=
void
0
;
/** * Builds an empty generator with the specified type. *
@returns
An empty generator or specified type. */
function
*
Empty
() { }
exports
.
Empty
=
Empty
;