DEV Community

Discussion on: Beautiful Functions: Compose

Collapse
 
jethrolarson profile image
Jethro Larson • Edited

I showed one which is

const fetchStuff = () =>
  fetch(...).then(data => parseData(validate(data))
Enter fullscreen mode Exit fullscreen mode

to

const fetchStuff = () =>
  fetch(...).then(B(parseData)(validate))
Enter fullscreen mode Exit fullscreen mode