@firebase/util 1.9.7-canary.1b9d95e5a → 1.9.7-canary.2ddbd4e49
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 +3 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +3 -0
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +3 -0
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +3 -0
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +3 -0
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/environment.d.ts +3 -0
- package/dist/src/environment.d.ts +3 -0
- package/dist/util-public.d.ts +3 -0
- package/dist/util.d.ts +3 -0
- package/package.json +1 -1
|
@@ -35,6 +35,9 @@ export declare function isMobileCordova(): boolean;
|
|
|
35
35
|
export declare function isNode(): boolean;
|
|
36
36
|
/**
|
|
37
37
|
* Detect Browser Environment
|
|
38
|
+
* Note: This will return true for certain test frameworks that are incompletely
|
|
39
|
+
* mimicking a browser, and should not lead to assuming all browser APIs are
|
|
40
|
+
* available.
|
|
38
41
|
*/
|
|
39
42
|
export declare function isBrowser(): boolean;
|
|
40
43
|
/**
|
|
@@ -35,6 +35,9 @@ export declare function isMobileCordova(): boolean;
|
|
|
35
35
|
export declare function isNode(): boolean;
|
|
36
36
|
/**
|
|
37
37
|
* Detect Browser Environment
|
|
38
|
+
* Note: This will return true for certain test frameworks that are incompletely
|
|
39
|
+
* mimicking a browser, and should not lead to assuming all browser APIs are
|
|
40
|
+
* available.
|
|
38
41
|
*/
|
|
39
42
|
export declare function isBrowser(): boolean;
|
|
40
43
|
/**
|
package/dist/util-public.d.ts
CHANGED
|
@@ -576,6 +576,9 @@ export declare const isAdmin: (token: string) => boolean;
|
|
|
576
576
|
|
|
577
577
|
/**
|
|
578
578
|
* Detect Browser Environment
|
|
579
|
+
* Note: This will return true for certain test frameworks that are incompletely
|
|
580
|
+
* mimicking a browser, and should not lead to assuming all browser APIs are
|
|
581
|
+
* available.
|
|
579
582
|
*/
|
|
580
583
|
export declare function isBrowser(): boolean;
|
|
581
584
|
|
package/dist/util.d.ts
CHANGED
|
@@ -576,6 +576,9 @@ export declare const isAdmin: (token: string) => boolean;
|
|
|
576
576
|
|
|
577
577
|
/**
|
|
578
578
|
* Detect Browser Environment
|
|
579
|
+
* Note: This will return true for certain test frameworks that are incompletely
|
|
580
|
+
* mimicking a browser, and should not lead to assuming all browser APIs are
|
|
581
|
+
* available.
|
|
579
582
|
*/
|
|
580
583
|
export declare function isBrowser(): boolean;
|
|
581
584
|
|
package/package.json
CHANGED