From 51833b91d05824add7d2138c70f9e06ed9074178 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 20 Mar 2016 11:23:12 -0700 Subject: [PATCH] Add `invertObj` and `juxt` fp aliases. --- fp/_mapping.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fp/_mapping.js b/fp/_mapping.js index 52c11218f..6e464c148 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -26,6 +26,8 @@ exports.aliasToReal = { 'equals': 'isEqual', 'identical': 'eq', 'init': 'initial', + 'invertObj': 'invert', + 'juxt': 'over', 'mapObj': 'mapValues', 'omitAll': 'omit', 'nAry': 'ary',