We're a place where coders share, stay up-to-date and grow their careers.
Isn't this just combineOptions = sequenceT(option)?
combineOptions = sequenceT(option)
Pretty much like it, yes. Although I should admit that sequenceT was introduced in fp-ts@2, while array.sequence works for fp-ts@1 as well.
sequenceT
array.sequence
Isn't this just
combineOptions = sequenceT(option)
?Pretty much like it, yes. Although I should admit that
sequenceT
was introduced in fp-ts@2, whilearray.sequence
works for fp-ts@1 as well.