The new BS version seems to break, at runtime, the wonka take function:

The generated code for the take function looks something like this:
if (state.taken < max) {
if (signal) {
state.taken = max;
return state.talkback(/* Close */1); // Breaks here
} else {
return state.talkback(/* Pull */0);
}
}
When logging, the stage.talkback propery is indeed undefined 😞
The new BS version seems to break, at runtime, the wonka take function:

The generated code for the take function looks something like this:
When logging, the
stage.talkbackpropery is indeedundefined😞