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