@types/lodash 4.14.176 → 4.14.178

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
lodash/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for Lo-Dash (https://lodash.com).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Wed, 20 Oct 2021 22:31:23 GMT
11
+ * Last updated: Wed, 08 Dec 2021 23:01:01 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `_`
14
14
 
lodash/common/array.d.ts CHANGED
@@ -106,8 +106,8 @@ declare module "../index" {
106
106
  }
107
107
  interface LoDashStatic {
108
108
  /**
109
- * Creates an array of unique array values not included in the other provided arrays using SameValueZero for
110
- * equality comparisons.
109
+ * Creates an array of `array` values not included in the other provided arrays using SameValueZero for
110
+ * equality comparisons. The order and references of result values are determined by the first array.
111
111
  *
112
112
  * @param array The array to inspect.
113
113
  * @param values The arrays of values to exclude.
@@ -129,9 +129,9 @@ declare module "../index" {
129
129
  }
130
130
  interface LoDashStatic {
131
131
  /**
132
- * This method is like _.difference except that it accepts iteratee which is invoked for each element of array
133
- * and values to generate the criterion by which uniqueness is computed. The iteratee is invoked with one
134
- * argument: (value).
132
+ * This method is like _.difference except that it accepts iteratee which is invoked for each element
133
+ * of array and values to generate the criterion by which they're compared. The order and references
134
+ * of result values are determined by the first array. The iteratee is invoked with one argument: (value).
135
135
  *
136
136
  * @param array The array to inspect.
137
137
  * @param values The values to exclude.
@@ -186,9 +186,9 @@ declare module "../index" {
186
186
  }
187
187
  interface LoDashStatic {
188
188
  /**
189
- * Creates an array of unique `array` values not included in the other
190
- * provided arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
191
- * for equality comparisons.
189
+ * This method is like _.difference except that it accepts comparator which is invoked to compare elements
190
+ * of array to values. The order and references of result values are determined by the first array. The
191
+ * comparator is invoked with two arguments: (arrVal, othVal).
192
192
  *
193
193
  * @category Array
194
194
  * @param [values] The arrays to inspect.
lodash/common/util.d.ts CHANGED
@@ -424,7 +424,7 @@ declare module "../index" {
424
424
  /**
425
425
  * @see _.iteratee
426
426
  */
427
- iteratee(func: string | object): (...args: any[]) => any;
427
+ iteratee(func: symbol | number | string | object): (...args: any[]) => any;
428
428
  }
429
429
  interface Function<T extends (...args: any) => any> {
430
430
  /**
lodash/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/lodash",
3
- "version": "4.14.176",
3
+ "version": "4.14.178",
4
4
  "description": "TypeScript definitions for Lo-Dash",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash",
6
6
  "license": "MIT",
@@ -60,6 +60,6 @@
60
60
  },
61
61
  "scripts": {},
62
62
  "dependencies": {},
63
- "typesPublisherContentHash": "1b67ca87899020bd2db2d94fd988d84696030b943ffcb0c59f5f0e16da2e1d51",
64
- "typeScriptVersion": "3.7"
63
+ "typesPublisherContentHash": "384d214d3c2ff6fd2cf69999d5b94ad9eb175a68ce624d78fa2c8fe2888ec27e",
64
+ "typeScriptVersion": "3.8"
65
65
  }