From dfb7a4c078c306b56171c187f883cfa69ff15aab Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 20 Mar 2016 11:16:18 -0700 Subject: [PATCH] Don't make `without` an alias so it can be reverted with `convert`. --- fp/_mapping.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fp/_mapping.js b/fp/_mapping.js index 32f6f684d..52c11218f 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -9,7 +9,6 @@ exports.aliasToReal = { 'extend': 'assignIn', 'extendWith': 'assignInWith', 'first': 'head', - 'without': 'difference', // Ramda aliases. '__': 'placeholder', @@ -264,6 +263,7 @@ exports.skipRearg = { 'range': true, 'rangeRight': true, 'subtract': true, + 'without': true, 'zip': true, 'zipObject': true };