It incorrectly passes `array_slice(func_get_args(), 1)` to `partial` when given <= 2 arguments. This would be the correct call: ```php return call_user_func( partial, concat_with, ...func_get_args() ); ``` This needs a test.
It incorrectly passes
array_slice(func_get_args(), 1)topartialwhen given <= 2 arguments.This would be the correct call:
This needs a test.