@hkdigital/lib-core 0.5.38 → 0.5.39
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.
|
@@ -392,7 +392,7 @@ export async function httpRequest(options) {
|
|
|
392
392
|
|
|
393
393
|
if (!isTestEnv) {
|
|
394
394
|
if (cachedResponse) {
|
|
395
|
-
console.debug(`http:cache-hit [${url.pathname}]`);
|
|
395
|
+
// console.debug(`http:cache-hit [${url.pathname}]`);
|
|
396
396
|
// console.debug(`cached-response has body: ${!!cachedResponse.body}`);
|
|
397
397
|
// console.debug(`cached-response content-length: ${cachedResponse.headers.get('content-length')}`);
|
|
398
398
|
return cachedResponse;
|
|
@@ -166,6 +166,8 @@
|
|
|
166
166
|
console.log('[GameBox] windowWidth/Height:', windowWidth, windowHeight);
|
|
167
167
|
console.log('[GameBox] iosWindowWidth/Height:',
|
|
168
168
|
iosWindowWidth, iosWindowHeight);
|
|
169
|
+
|
|
170
|
+
console.log( {isPwa, isAppleMobile, isMobile, isIos, isAndroid, isFullscreen} );
|
|
169
171
|
}
|
|
170
172
|
});
|
|
171
173
|
|