mostly-adequate-guide icon indicating copy to clipboard operation
mostly-adequate-guide copied to clipboard

`id` function does not exist (Chapter 8)

Open klequis opened this issue 3 years ago • 0 comments

In chapter 8 the final code example before "Old McDonald..." has this line

const zoltar = compose(console.log, either(id, fortune), getAge(moment()));

However, the support functions do not have an id function. They do have an identity function. I'm wondering if the line in the code example should actually be using identity:

const zoltar = compose(console.log, either(identity, fortune), getAge(moment()));

I'm running the code in a Node project where I just copied in all the support files from the repo.

klequis avatar Jul 19 '21 19:07 klequis