File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export default platform.hasStandardBrowserEnv ?
8
8
// Standard browser envs have full support of the APIs needed to test
9
9
// whether the request URL is of the same origin as current location.
10
10
( function standardBrowserEnv ( ) {
11
- const msie = / ( m s i e | t r i d e n t ) / i. test ( navigator . userAgent ) ;
11
+ const msie = platform . navigator && / ( m s i e | t r i d e n t ) / i. test ( platform . navigator . userAgent ) ;
12
12
const urlParsingNode = document . createElement ( 'a' ) ;
13
13
let originURL ;
14
14
Original file line number Diff line number Diff line change 1
1
const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'undefined' ;
2
2
3
+ const _navigator = typeof navigator === 'object' && navigator || undefined ;
4
+
3
5
/**
4
6
* Determine if we're running in a standard browser environment
5
7
*
@@ -17,10 +19,8 @@ const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'unde
17
19
*
18
20
* @returns {boolean }
19
21
*/
20
- const hasStandardBrowserEnv = (
21
- ( product ) => {
22
- return hasBrowserEnv && [ 'ReactNative' , 'NativeScript' , 'NS' ] . indexOf ( product ) < 0
23
- } ) ( typeof navigator !== 'undefined' && navigator . product ) ;
22
+ const hasStandardBrowserEnv = hasBrowserEnv &&
23
+ ( ! _navigator || [ 'ReactNative' , 'NativeScript' , 'NS' ] . indexOf ( _navigator . product ) < 0 ) ;
24
24
25
25
/**
26
26
* Determine if we're running in a standard browser webWorker environment
@@ -46,5 +46,6 @@ export {
46
46
hasBrowserEnv ,
47
47
hasStandardBrowserWebWorkerEnv ,
48
48
hasStandardBrowserEnv ,
49
+ _navigator as navigator ,
49
50
origin
50
51
}
You can’t perform that action at this time.
0 commit comments