From 2fb4ec0d5f1357c08c50971e32a7c25aabd44303 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 11 Jan 2016 23:20:37 -0800 Subject: [PATCH] Rename `conj` and `disj` to `overEvery` and `overSome` in fp mapping. --- lib/fp/mapping.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/fp/mapping.js b/lib/fp/mapping.js index 3899e3fb0..1044af388 100644 --- a/lib/fp/mapping.js +++ b/lib/fp/mapping.js @@ -3,8 +3,8 @@ module.exports = { /** Used to map method names to their aliases. */ 'aliasMap': { 'ary': ['nAry'], - 'conj': ['allPass'], - 'disj': ['somePass'], + 'overEvery': ['allPass'], + 'overSome': ['somePass'], 'filter': ['whereEq'], 'flatten': ['unnest'], 'flow': ['pipe'],