@types/lodash 4.14.156 → 4.14.157
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 +1 -1
- lodash/common/function.d.ts +5 -4
- lodash/package.json +2 -2
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:
|
|
11
|
+
* Last updated: Wed, 24 Jun 2020 11:46:46 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `_`
|
|
14
14
|
|
lodash/common/function.d.ts
CHANGED
|
@@ -801,10 +801,11 @@ declare module "../index" {
|
|
|
801
801
|
|
|
802
802
|
interface LoDashStatic {
|
|
803
803
|
/**
|
|
804
|
-
* Creates a function that memoizes the result of func
|
|
805
|
-
*
|
|
806
|
-
* provided to the memoized function
|
|
807
|
-
* the
|
|
804
|
+
* Creates a function that memoizes the result of `func`. If `resolver` is
|
|
805
|
+
* provided, it determines the cache key for storing the result based on the
|
|
806
|
+
* arguments provided to the memoized function. By default, the first argument
|
|
807
|
+
* provided to the memoized function is used as the map cache key. The `func`
|
|
808
|
+
* is invoked with the `this` binding of the memoized function.
|
|
808
809
|
*
|
|
809
810
|
* @param func The function to have its output memoized.
|
|
810
811
|
* @param resolver The function to resolve the cache key.
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.157",
|
|
4
4
|
"description": "TypeScript definitions for Lo-Dash",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
},
|
|
67
67
|
"scripts": {},
|
|
68
68
|
"dependencies": {},
|
|
69
|
-
"typesPublisherContentHash": "
|
|
69
|
+
"typesPublisherContentHash": "401c578776aece7b131cd2f43b8606ae5f66591b6297c11805be918ff362b59f",
|
|
70
70
|
"typeScriptVersion": "3.0"
|
|
71
71
|
}
|