Another round of fp aliases.

This commit is contained in:
John-David Dalton
2016-06-01 00:18:49 -07:00
parent 4880f9923c
commit 9eda959489

View File

@@ -28,6 +28,8 @@ exports.aliasToReal = {
'contains': 'includes',
'dissoc': 'unset',
'dissocPath': 'unset',
'dropLast': 'dropRight',
'dropLastWhile': 'dropRightWhile',
'equals': 'isEqual',
'identical': 'eq',
'indexBy': 'keyBy',
@@ -50,9 +52,12 @@ exports.aliasToReal = {
'symmetricDifference': 'xor',
'symmetricDifferenceBy': 'xorBy',
'symmetricDifferenceWith': 'xorWith',
'takeLast': 'takeRight',
'takeLastWhile': 'takeRightWhile',
'unapply': 'rest',
'unnest': 'flatten',
'useWith': 'overArgs',
'where': 'conforms',
'whereEq': 'filter',
'zipObj': 'zipObject'
};