Guest User

Untitled

a guest
May 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. const fn = R.ifElse(
  2. R.complement(R.isNil),
  3. R.pipe(
  4. R.of,
  5. R.partial(R.append)
  6. ),
  7. R.apply(R.identity)
  8. )
  9.  
  10. fn(null)([1])
  11. //(2)([1])
Add Comment
Please, Sign In to add comment