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
/
src
/
functions
/
empty.test.ts
7 lines
(5 loc)
•
135 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
"./array"
;
import
{
Empty
}
from
"./empty"
;
it
(
"Creates an empty sequence"
,
() =>
{
expect
(
Empty
().
array
()).
toEqual
([]); });