document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. 1. import { pipe, props, join, objOf, over, lensProp, useWith, merge } from 'ramda';
  2. 2.
  3. 3. const createFullName = pipe(
  4. 4. props(['firstName', 'lastName']),
  5. 5. join(' '),
  6. 6. objOf('fullName'),
  7. 7. );
  8. 8.
  9. 9. const formatUser = useWith(merge, [
  10. 10. over(lensProp('profile'), createFullName),
  11. 11. objOf('posts'),
  12. 12. ]);
  13. 13.
  14. 14. formatUser(user, posts);
  15.  
');