Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const composeHOF = (f, g) => {
  2. return x => cb => {
  3. g(x)(y => {
  4. f(y)(cb)
  5. })
  6. }
  7. }
  8.  
  9. const readFileContentHOF = composeHOF(readFileHOF, readFileHOF)
  10. readFileContentHOF('./file1')(result => console.log(result))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement