From be77e7366cf5379bc5657cc0db90cfc0b7dd4a74 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 19 Mar 2016 23:43:11 -0700 Subject: [PATCH] Remove "with" methods from `iterateeAry` mapping. --- fp/_mapping.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/fp/_mapping.js b/fp/_mapping.js index 43d21833c..6486fd6b6 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -93,10 +93,6 @@ exports.aryRearg = { /** Used to map method names to their iteratee ary. */ exports.iterateeAry = { - 'assignWith': 2, - 'assignInWith': 2, - 'cloneDeepWith': 1, - 'cloneWith': 1, 'dropRightWhile': 1, 'dropWhile': 1, 'every': 1, @@ -116,8 +112,6 @@ exports.iterateeAry = { 'forInRight': 1, 'forOwn': 1, 'forOwnRight': 1, - 'isEqualWith': 2, - 'isMatchWith': 2, 'map': 1, 'mapKeys': 1, 'mapValues': 1,