Rename conj and disj to overEvery and overSome in fp mapping.

This commit is contained in:
John-David Dalton
2016-01-11 23:20:37 -08:00
parent ddd5318bb0
commit 2fb4ec0d5f

View File

@@ -3,8 +3,8 @@ module.exports = {
/** Used to map method names to their aliases. */ /** Used to map method names to their aliases. */
'aliasMap': { 'aliasMap': {
'ary': ['nAry'], 'ary': ['nAry'],
'conj': ['allPass'], 'overEvery': ['allPass'],
'disj': ['somePass'], 'overSome': ['somePass'],
'filter': ['whereEq'], 'filter': ['whereEq'],
'flatten': ['unnest'], 'flatten': ['unnest'],
'flow': ['pipe'], 'flow': ['pipe'],