mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-13 20:37:48 +00:00
Add "findFrom" methods to fp dep mappings.
This commit is contained in:
@@ -84,13 +84,13 @@ exports.aryMethod = {
|
|||||||
],
|
],
|
||||||
'3': [
|
'3': [
|
||||||
'assignInWith', 'assignWith', 'clamp', 'differenceBy', 'differenceWith',
|
'assignInWith', 'assignWith', 'clamp', 'differenceBy', 'differenceWith',
|
||||||
'findIndexFrom', 'findLastIndexFrom', 'getOr', 'indexOfFrom', 'inRange',
|
'findFrom', 'findIndexFrom', 'findLastFrom', 'findLastIndexFrom', 'getOr',
|
||||||
'intersectionBy', 'intersectionWith', 'invokeArgs', 'invokeArgsMap',
|
'includesFrom', 'indexOfFrom', 'inRange', 'intersectionBy', 'intersectionWith',
|
||||||
'isEqualWith', 'isMatchWith', 'flatMapDepth', 'lastIndexOfFrom', 'mergeWith',
|
'invokeArgs', 'invokeArgsMap', 'isEqualWith', 'isMatchWith', 'flatMapDepth',
|
||||||
'orderBy', 'padChars', 'padCharsEnd', 'padCharsStart', 'pullAllBy',
|
'lastIndexOfFrom', 'mergeWith', 'orderBy', 'padChars', 'padCharsEnd',
|
||||||
'pullAllWith', 'reduce', 'reduceRight', 'replace', 'set', 'slice',
|
'padCharsStart', 'pullAllBy', 'pullAllWith', 'reduce', 'reduceRight', 'replace',
|
||||||
'sortedIndexBy', 'sortedLastIndexBy', 'transform', 'unionBy', 'unionWith',
|
'set', 'slice', 'sortedIndexBy', 'sortedLastIndexBy', 'transform', 'unionBy',
|
||||||
'update', 'xorBy', 'xorWith', 'zipWith'
|
'unionWith', 'update', 'xorBy', 'xorWith', 'zipWith'
|
||||||
],
|
],
|
||||||
'4': [
|
'4': [
|
||||||
'fill', 'setWith', 'updateWith'
|
'fill', 'setWith', 'updateWith'
|
||||||
@@ -111,10 +111,14 @@ exports.iterateeAry = {
|
|||||||
'every': 1,
|
'every': 1,
|
||||||
'filter': 1,
|
'filter': 1,
|
||||||
'find': 1,
|
'find': 1,
|
||||||
|
'findFrom': 1,
|
||||||
'findIndex': 1,
|
'findIndex': 1,
|
||||||
|
'findIndexFrom': 1,
|
||||||
'findKey': 1,
|
'findKey': 1,
|
||||||
'findLast': 1,
|
'findLast': 1,
|
||||||
|
'findLastFrom': 1,
|
||||||
'findLastIndex': 1,
|
'findLastIndex': 1,
|
||||||
|
'findLastIndexFrom': 1,
|
||||||
'findLastKey': 1,
|
'findLastKey': 1,
|
||||||
'flatMap': 1,
|
'flatMap': 1,
|
||||||
'flatMapDeep': 1,
|
'flatMapDeep': 1,
|
||||||
@@ -236,9 +240,12 @@ exports.realToAlias = (function() {
|
|||||||
exports.remap = {
|
exports.remap = {
|
||||||
'curryN': 'curry',
|
'curryN': 'curry',
|
||||||
'curryRightN': 'curryRight',
|
'curryRightN': 'curryRight',
|
||||||
|
'findFrom': 'find',
|
||||||
'findIndexFrom': 'findIndex',
|
'findIndexFrom': 'findIndex',
|
||||||
|
'findLastFrom': 'findLast',
|
||||||
'findLastIndexFrom': 'findLastIndex',
|
'findLastIndexFrom': 'findLastIndex',
|
||||||
'getOr': 'get',
|
'getOr': 'get',
|
||||||
|
'includesFrom': 'includes',
|
||||||
'indexOfFrom': 'indexOf',
|
'indexOfFrom': 'indexOf',
|
||||||
'invokeArgs': 'invoke',
|
'invokeArgs': 'invoke',
|
||||||
'invokeArgsMap': 'invokeMap',
|
'invokeArgsMap': 'invokeMap',
|
||||||
|
|||||||
Reference in New Issue
Block a user