Open kxcrl opened 8 years ago
In lodash and underscore, the definitions of #rest have diverged. In lodash, #rest applies remaining arguments to a following function, whereas in underscore #rest is simply an alias for #tail.
#rest
#tail
In both, #tail has the desired behavior.
In lodash and underscore, the definitions of
#rest
have diverged. In lodash,#rest
applies remaining arguments to a following function, whereas in underscore#rest
is simply an alias for#tail
.In both,
#tail
has the desired behavior.