@types/lodash 4.14.154 → 4.14.155
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/lang.d.ts +0 -2
- lodash/package.json +2 -2
- lodash/ts3.1/common/lang.d.ts +1 -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, 03 Jun 2020 15:24:03 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `_`
|
|
14
14
|
|
lodash/common/lang.d.ts
CHANGED
|
@@ -978,8 +978,6 @@ declare module "../index" {
|
|
|
978
978
|
|
|
979
979
|
// isMatch
|
|
980
980
|
|
|
981
|
-
type isMatchCustomizer = (value: any, other: any, indexOrKey?: PropertyName) => boolean;
|
|
982
|
-
|
|
983
981
|
interface LoDashStatic {
|
|
984
982
|
/**
|
|
985
983
|
* Performs a deep comparison between `object` and `source` to determine if
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.155",
|
|
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": "b99bf15473b1173ed78ce858997cc6375bf19f78ae74141ab5717be45b00735c",
|
|
70
70
|
"typeScriptVersion": "3.0"
|
|
71
71
|
}
|
lodash/ts3.1/common/lang.d.ts
CHANGED
|
@@ -838,7 +838,6 @@ declare module "../index" {
|
|
|
838
838
|
isMap(): PrimitiveChain<boolean>;
|
|
839
839
|
}
|
|
840
840
|
|
|
841
|
-
type isMatchCustomizer = (value: any, other: any, indexOrKey?: PropertyName) => boolean;
|
|
842
841
|
interface LoDashStatic {
|
|
843
842
|
/**
|
|
844
843
|
* Performs a deep comparison between `object` and `source` to determine if
|
|
@@ -875,7 +874,7 @@ declare module "../index" {
|
|
|
875
874
|
isMatch(source: object): PrimitiveChain<boolean>;
|
|
876
875
|
}
|
|
877
876
|
|
|
878
|
-
type isMatchWithCustomizer = (value: any, other: any, indexOrKey: PropertyName, object: object, source: object) => boolean;
|
|
877
|
+
type isMatchWithCustomizer = (value: any, other: any, indexOrKey: PropertyName, object: object, source: object) => boolean | undefined;
|
|
879
878
|
interface LoDashStatic {
|
|
880
879
|
/**
|
|
881
880
|
* This method is like `_.isMatch` except that it accepts `customizer` which
|