littleball-games / lb-f

A collection of functional programming functions
MIT License
0 stars 1 forks source link

Fixes #19 by removing interal curry from compose. #20

Closed skylize closed 6 years ago

skylize commented 6 years ago

Internal use of currying is of minimal benefit for compose. It adds unnecessary overhead and completely chokes in the case of optionally-unary functions. This patch removes the automatic internal curry and adds tests for proper handling of unary-like multi-parameter functions and for rest parameter functions.