sitepong 0.1.7 → 0.1.8
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/dist/entries/rn.js +6 -3
- package/dist/entries/rn.js.map +1 -1
- package/package.json +1 -1
package/dist/entries/rn.js
CHANGED
|
@@ -2815,7 +2815,8 @@ var deviceIdModule = null;
|
|
|
2815
2815
|
function getDeviceIdModule() {
|
|
2816
2816
|
if (!deviceIdModule) {
|
|
2817
2817
|
try {
|
|
2818
|
-
|
|
2818
|
+
const n = ["@sitepong", "device-id"].join("/");
|
|
2819
|
+
deviceIdModule = __require(n);
|
|
2819
2820
|
} catch {
|
|
2820
2821
|
deviceIdModule = null;
|
|
2821
2822
|
}
|
|
@@ -2833,7 +2834,8 @@ function collectDeviceInfo() {
|
|
|
2833
2834
|
info.screenScale = screen.scale;
|
|
2834
2835
|
let ExpoDevice = null;
|
|
2835
2836
|
try {
|
|
2836
|
-
|
|
2837
|
+
const n = ["expo", "device"].join("-");
|
|
2838
|
+
ExpoDevice = __require(n);
|
|
2837
2839
|
} catch {
|
|
2838
2840
|
}
|
|
2839
2841
|
if (ExpoDevice) {
|
|
@@ -2844,7 +2846,8 @@ function collectDeviceInfo() {
|
|
|
2844
2846
|
}
|
|
2845
2847
|
let ExpoApplication = null;
|
|
2846
2848
|
try {
|
|
2847
|
-
|
|
2849
|
+
const n = ["expo", "application"].join("-");
|
|
2850
|
+
ExpoApplication = __require(n);
|
|
2848
2851
|
} catch {
|
|
2849
2852
|
}
|
|
2850
2853
|
if (ExpoApplication) {
|