Effect-lib Pipeable Function Query

does effect export pipeable helper functions like in fp-ts to do transformations like so i.e. adding a key to an object

const transformedUserInfo = pipe(userInfo, objectToSnake, (userInfo) => ({
    ...userInfo,
    is_otp_verified: true,
  }))
Was this page helpful?