@firebase/firestore 3.1.0-2021822203916 → 3.1.0
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.
- package/CHANGELOG.md +8 -6
- package/dist/firestore/src/util/input_validation.d.ts +1 -1
- package/dist/index.esm2017.js +4 -7
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +4 -8
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.esm2017.js +4 -8
- package/dist/index.node.cjs.esm2017.js.map +1 -1
- package/dist/index.node.cjs.js +4 -8
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.rn.js +4 -7
- package/dist/index.rn.js.map +1 -1
- package/dist/lite/firestore/src/util/input_validation.d.ts +1 -1
- package/dist/lite/index.browser.esm2017.js +1085 -1088
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.browser.esm5.js +12 -16
- package/dist/lite/index.browser.esm5.js.map +1 -1
- package/dist/lite/index.node.cjs.js +4 -8
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.esm2017.js +4 -8
- package/dist/lite/index.node.esm2017.js.map +1 -1
- package/dist/lite/index.rn.esm2017.js +4 -7
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/packages/firestore/dist/lite/index.browser.esm2017.d.ts +109 -109
- package/dist/lite/packages/firestore/src/util/input_validation.d.ts +1 -1
- package/dist/packages/firestore/src/util/input_validation.d.ts +1 -1
- package/package.json +9 -9
|
@@ -6,7 +6,7 @@ import { createMockUserToken, getModularInstance } from '@firebase/util';
|
|
|
6
6
|
import nodeFetch from 'node-fetch';
|
|
7
7
|
import { randomBytes as randomBytes$1 } from 'crypto';
|
|
8
8
|
|
|
9
|
-
const version$1 = "3.1.0
|
|
9
|
+
const version$1 = "3.1.0";
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* @license
|
|
@@ -59,7 +59,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
|
|
|
59
59
|
User.FIRST_PARTY = new User('first-party-uid');
|
|
60
60
|
User.MOCK_USER = new User('mock-user');
|
|
61
61
|
|
|
62
|
-
const version = "9.1.0
|
|
62
|
+
const version = "9.1.0";
|
|
63
63
|
|
|
64
64
|
/**
|
|
65
65
|
* @license
|
|
@@ -1069,14 +1069,10 @@ function valueDescription(input) {
|
|
|
1069
1069
|
return fail();
|
|
1070
1070
|
}
|
|
1071
1071
|
}
|
|
1072
|
-
/**
|
|
1072
|
+
/** try to get the constructor name for an object. */
|
|
1073
1073
|
function tryGetCustomObjectType(input) {
|
|
1074
1074
|
if (input.constructor) {
|
|
1075
|
-
|
|
1076
|
-
const results = funcNameRegex.exec(input.constructor.toString());
|
|
1077
|
-
if (results && results.length > 1) {
|
|
1078
|
-
return results[1];
|
|
1079
|
-
}
|
|
1075
|
+
return input.constructor.name;
|
|
1080
1076
|
}
|
|
1081
1077
|
return null;
|
|
1082
1078
|
}
|