Oliver Joseph Ash
Oliver Joseph Ash
Take a look at this: https://brid-gy.appspot.com/like/facebook/1051748518251476/1051774048248923/306748659660390?format=json. The `h-entry`s in my feed contained `u-url`s like so: ``` ``` However it appears that bridgy did not pick these up correctly. Take a...
Tested again, this is definitely happening! https://brid-gy.appspot.com/like/facebook/1051748518251476/1051774048248923/306748659660390?format=json
FYI I'm also running into this
Company name: Unsplash SVG logo: ```svg Unsplash Home ``` Website: https://unsplash.com/ Repos using fp-ts: all private (for now at least)
1. Because that's the behaviour of `String.prototype.split`. 2. `pipe('ab', string.split(''))` returns `['a', 'b']`, which suggests that a `''` separator will split each character, but if `''` is the input, there...
If we change the overload order so the `B extends A` overload is last, the issue disappears, however to understand whether that's a viable solution I would first need to...
Interesting, thanks for sharing that. It seems the issue described in https://github.com/gcanti/fp-ts/issues/1484 happens because of a limitation with the way type inference works inside of TypeScript. I reduced the test...
I'm not sure it's safe to assume that `switchMap` is a better "default" than `mergeMap`. Both operators have use cases, sometimes you want to run observables in parallel, sometimes you...
if we had to pick a default, `mergeMap` seems "safer" to me because it doesn't cancel. Someone might use `chain` without realising that it will cancel each time there's a...
At Unsplash we've defined operators for each type using the same names as the built-in `Observable` operators, e.g.: `shared/facades/ObservableEither/operators.ts`: ```ts export const switchMap = ( fn: (a: A) => ObservableEither,...