From 5f94723d7f0fa981c69f1369362719a83dec07fb Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 20 Mar 2016 11:53:38 -0700 Subject: [PATCH] Add `always` fp alias. --- fp/_mapping.js | 1 + 1 file changed, 1 insertion(+) diff --git a/fp/_mapping.js b/fp/_mapping.js index 5d84d9ffa..3ea6c1331 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -14,6 +14,7 @@ exports.aliasToReal = { '__': 'placeholder', 'all': 'every', 'allPass': 'overEvery', + 'always': 'constant', 'any': 'some', 'anyPass': 'overSome', 'apply': 'spread',