Fix fp aliases for all, any, and anyPass.

This commit is contained in:
John-David Dalton
2016-03-16 21:14:23 -07:00
parent b8ebceadaf
commit 412e19006b

View File

@@ -1,8 +1,10 @@
/** Used to map aliases to their real names. */ /** Used to map aliases to their real names. */
exports.aliasToReal = { exports.aliasToReal = {
'__': 'placeholder', '__': 'placeholder',
'all': 'some', 'all': 'every',
'allPass': 'overEvery', 'allPass': 'overEvery',
'any': 'some',
'anyPass': 'overSome',
'apply': 'spread', 'apply': 'spread',
'assoc': 'set', 'assoc': 'set',
'assocPath': 'set', 'assocPath': 'set',
@@ -30,7 +32,6 @@ exports.aliasToReal = {
'prop': 'get', 'prop': 'get',
'propOf': 'propertyOf', 'propOf': 'propertyOf',
'propOr': 'getOr', 'propOr': 'getOr',
'somePass': 'overSome',
'unapply': 'rest', 'unapply': 'rest',
'unnest': 'flatten', 'unnest': 'flatten',
'useWith': 'overArgs', 'useWith': 'overArgs',