From 37454b8f42a441a6a2203cda85a6974f883b776d Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 20 Mar 2016 10:02:46 -0700 Subject: [PATCH] Add `eq` and `isEqual` to fp `skipRearg` mapping. --- fp/_mapping.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fp/_mapping.js b/fp/_mapping.js index 6486fd6b6..0868a9534 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -244,8 +244,10 @@ exports.skipRearg = { 'concat': true, 'difference': true, 'divide': true, + 'eq': true, 'gt': true, 'gte': true, + 'isEqual': true, 'lt': true, 'lte': true, 'matchesProperty': true,