From 497d57ca951d90a19153540755a2be0b4a622bf3 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 2 Feb 2016 22:27:30 -0800 Subject: [PATCH] Ensure fp `add` and `subtract` don't have rearg applied. --- fp/_mapping.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fp/_mapping.js b/fp/_mapping.js index 36d833b4d..8b8e24b75 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -221,6 +221,7 @@ exports.rename = { /** Used to track methods that skip `_.rearg`. */ exports.skipRearg = { + 'add': true, 'assign': true, 'assignIn': true, 'concat': true, @@ -232,6 +233,7 @@ exports.skipRearg = { 'random': true, 'range': true, 'rangeRight': true, + 'subtract': true, 'zip': true, 'zipObject': true };