Heyo! I'm playing with function*
's and yield
's. I've noticed that (In NodeJS) anyway, when I try to call yield
when I'm not within a function*
, yield is undefined. Though yield
is keyword so I can't exactly check if yield === undefined
.
So what I am asking is, how can I tell if my code is currently running through a function*
?