Converting fp-ts Option to effect Option
Is there any easier and/or more efficient way to bridge fp-ts Option to effect Option than:
export const bridgeOption = <A>(old: option.Option<A>): O.Option<A> =>
option.isSome(old) ? O.some(old.value) : O.none()