summaryrefslogtreecommitdiff
path: root/lib/internal/rest.js
blob: ee70cc614ab928d70d1961676e43a993c45a59ce (plain)
1
2
3
4
5
6
7
8
import _overRest from 'lodash/_overRest';
import identity from 'lodash/identity';

// Lodash rest function without function.toString()
// remappings
export default function rest(func, start) {
    return _overRest(func, start, identity);
}