You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ Currently supported utils:
9
9
-`clone` - Shallow clone the object
10
10
-`cloneDeep` - deep clone functionality for objects
11
11
-`difference` - creates an array of values from the first argument not included in the second argument
12
+
-`differenceWith` - creates an array of values from the first argument not included in the second one using comparator function
12
13
-`findLastIndex` - Returns the index of the last element in the array that satisfies the provided testing function.
13
14
-`flow` - generate a composite function that returns the result of provided functions called by the chain; each previous function result passes as the argument of the next function in the chain
14
15
-`freezeDeep` - deep freezes objects
@@ -31,6 +32,7 @@ Currently supported utils:
31
32
-`isUndefined` - checks if an input is undefined
32
33
-`mapKeys` - creates new object with the same values but with keys mapped by the provided function
33
34
-`mapValues` - Maps the values of an object or array using the provided iteratee function or property path
35
+
-`matches` - creates a function that makes a deep partial comparison on a given object with the source
34
36
-`max` - computes the maximum value of array. If array is empty or falsey, undefined is returned
35
37
-`mean` - Returns the mean of an array of numbers
36
38
-`merge` - deep merge functionality for objects
@@ -47,8 +49,10 @@ Currently supported utils:
47
49
-`sumBy` - calculate sum of array items using iteratee function or string shortcut
48
50
-`transformKeysToSnake` - transform every object key to snake case with option to be recursive
49
51
-`union` - Returns the union of the given arrays
52
+
-`uniq` - Returns unique values of the array
50
53
-`uniqBy` - get unique values of array by the iteratee function or property path
51
54
-`uniqWith` - Returns a new array with unique values, using a comparator function
55
+
-`unset` - Remove a property by the path in any depth, returns true if succeed, false otherwise
52
56
-`update` - Update the object with the updater by path
53
57
-`validateInput` - validates the input based on the regex format options: `NUMBER | EMAIL | PATH | NAME | NAME_WITH_DIGITS | INPUT | ADDRESS | PHONE_CODE | PHONE | IMAGE | FILE | FILENAME | PASSWORD`
54
58
-`without` - creates an array of values from the first argument excluding all given arguments
0 commit comments