From 5122e9271c3d1cfadf4869b547a71436143730bd Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 8 Jun 2016 23:26:57 -0700 Subject: [PATCH] Add `conforms` to `aliasToReal` fp mapping. --- fp/_mapping.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fp/_mapping.js b/fp/_mapping.js index 521b8de20..bd1c9d4fa 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -13,6 +13,7 @@ exports.aliasToReal = { 'first': 'head', // Methods that are curried variants of others. + 'conforms': 'conformsTo', 'matches': 'isMatch', // Ramda aliases. @@ -61,7 +62,7 @@ exports.aliasToReal = { 'unapply': 'rest', 'unnest': 'flatten', 'useWith': 'overArgs', - 'where': 'conforms', + 'where': 'conformsTo', 'whereEq': 'isMatch', 'zipObj': 'zipObject' };