From e00d9821a89d141e7b12f9acddda003368c6938a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 6 Feb 2016 16:51:54 -0800 Subject: [PATCH] Add `gt`, `gte`, `lt`, `lte` to fp `skipRearg` mapping. --- fp/_mapping.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fp/_mapping.js b/fp/_mapping.js index 8b8e24b75..75f0babaa 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -226,6 +226,10 @@ exports.skipRearg = { 'assignIn': true, 'concat': true, 'difference': true, + 'gt': true, + 'gte': true, + 'lt': true, + 'lte': true, 'matchesProperty': true, 'merge': true, 'partial': true,