Effect CommunityEC
Effect Community2y ago
5 replies
ahrjarrett

Generic `map` function in effect

does effect have a generic map function? e.g.,
pipe(
  [1,2,3],
  map(String)
)

pipe(
  { a: 1, b: 2, c: 3 },
  map(String),
)
Was this page helpful?