Skip to content

Instantly share code, notes, and snippets.

@nicoespeon
Created April 11, 2016 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicoespeon/d4d4eeceb793b099271bd97ffcbcb107 to your computer and use it in GitHub Desktop.
Save nicoespeon/d4d4eeceb793b099271bd97ffcbcb107 to your computer and use it in GitHub Desktop.
Blog - Achieving point-free JavaScript - achieving point-free
// What I ended up with
const getX = ( input ) => getY( parseA( input ), parseB( input ) );
// What I was trying to achieve, some sort of:
const getX = anyFunction( getY( parseA, parseB ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment