Project
...
Solution Review: Working with Flow
Learn the solution to the coding challenge "Working with Flow."
const application = (name: string): PersonWithAgeAndCountry => { return flow( buildBasicPerson, enrichWithAge, enrichWithCountry, )(name);};console.log(application("Ali"));