Add conforms to aliasToReal fp mapping.

This commit is contained in:
John-David Dalton
2016-06-08 23:26:57 -07:00
parent 32b36435f8
commit 5122e9271c

View File

@@ -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'
};