From 68e98397abb61b63e6c4067cd0eadb7e74c9c2fd Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 1 Jun 2016 07:33:57 -0700 Subject: [PATCH] Add `matches` to `aliasToReal` fp mapping. --- fp/_mapping.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fp/_mapping.js b/fp/_mapping.js index 98903d17a..0812a504a 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -11,6 +11,9 @@ exports.aliasToReal = { 'extendWith': 'assignInWith', 'first': 'head', + // Methods that are curried variants of others. + 'matches': 'isMatch', + // Ramda aliases. '__': 'placeholder', 'F': 'stubFalse',