@firebase/util 1.11.1-canary.8a03143b9 → 1.11.1-canary.d5428f3d2
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/index.cjs.js +0 -9
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +1 -9
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.node.cjs.js +0 -9
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +1 -9
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/environment.d.ts +0 -2
- package/dist/src/environment.d.ts +0 -2
- package/dist/util-public.d.ts +0 -3
- package/dist/util.d.ts +0 -3
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -850,14 +850,6 @@ function isSafari() {
|
|
|
850
850
|
navigator.userAgent.includes('Safari') &&
|
|
851
851
|
!navigator.userAgent.includes('Chrome'));
|
|
852
852
|
}
|
|
853
|
-
/** Returns true if we are running in Safari or WebKit */
|
|
854
|
-
function isSafariOrWebkit() {
|
|
855
|
-
return (!isNode() &&
|
|
856
|
-
!!navigator.userAgent &&
|
|
857
|
-
(navigator.userAgent.includes('Safari') ||
|
|
858
|
-
navigator.userAgent.includes('WebKit')) &&
|
|
859
|
-
!navigator.userAgent.includes('Chrome'));
|
|
860
|
-
}
|
|
861
853
|
/**
|
|
862
854
|
* This method checks if indexedDB is supported by current browser/service worker context
|
|
863
855
|
* @return true if indexedDB is supported by current browser/service worker context
|
|
@@ -2200,7 +2192,6 @@ exports.isNode = isNode;
|
|
|
2200
2192
|
exports.isNodeSdk = isNodeSdk;
|
|
2201
2193
|
exports.isReactNative = isReactNative;
|
|
2202
2194
|
exports.isSafari = isSafari;
|
|
2203
|
-
exports.isSafariOrWebkit = isSafariOrWebkit;
|
|
2204
2195
|
exports.isUWP = isUWP;
|
|
2205
2196
|
exports.isValidFormat = isValidFormat;
|
|
2206
2197
|
exports.isValidTimestamp = isValidTimestamp;
|