From 0a08edb6d744c68997413e045cf97f60635c3906 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 9 Sep 2015 08:31:19 -0700 Subject: [PATCH] Remove second `_.rearg` example. [ci skip] --- lodash.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lodash.js b/lodash.js index 1d6f02e82..f97eefd63 100644 --- a/lodash.js +++ b/lodash.js @@ -7823,12 +7823,6 @@ * * rearged('b', 'c', 'a') * // => ['a', 'b', 'c'] - * - * var map = _.rearg(_.map, [1, 0]); - * map(function(n) { - * return n * 3; - * }, [1, 2, 3]); - * // => [3, 6, 9] */ var rearg = restParam(function(func, indexes) { return createWrapper(func, REARG_FLAG, undefined, undefined, undefined, baseFlatten(indexes));