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', 'first': 'head',
// Methods that are curried variants of others. // Methods that are curried variants of others.
'conforms': 'conformsTo',
'matches': 'isMatch', 'matches': 'isMatch',
// Ramda aliases. // Ramda aliases.
@@ -61,7 +62,7 @@ exports.aliasToReal = {
'unapply': 'rest', 'unapply': 'rest',
'unnest': 'flatten', 'unnest': 'flatten',
'useWith': 'overArgs', 'useWith': 'overArgs',
'where': 'conforms', 'where': 'conformsTo',
'whereEq': 'isMatch', 'whereEq': 'isMatch',
'zipObj': 'zipObject' 'zipObj': 'zipObject'
}; };