Joseph

Results 2 issues of Joseph

```javascript const s1$ = xs.of("meow") const s2$ = xs.fromArray([1,2,3]) xs.combine(s1$, s2$).debug() // ["meow", 1] // ["meow", 2] // ["meow", 3] xs.combine(s2$, s1$).debug() // [3, "meow"] ``` I apologize if the...

issue is bug
weight 1 (maybe)

First of all, big thank you to all contributors of this incredibly high-quality library. Now let the nitpicking games begin! **Describe the bug** According to [documentation](https://use-gesture.netlify.app/docs/options/#delay), if both `delay` and...

enhancement