forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.js
40 lines (35 loc) · 874 Bytes
/
env.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* IE浏览器的渲染引擎版本号
* 注意:此属性与浏览器版本号不同,IE的渲染引擎版本号是可以通过HTML header或手动设置去更改的
* @type {Number} 6 ~ 10
*/
export const ieVersion = typeof document !== 'undefined' ? document.documentMode : undefined;
/**
* 判断是否是生产环境
* @type {Boolean}
*/
export const isProduction = () => {
const PRODUCTION_ENV = 'production';
let result = false;
try {
if (process.env.NODE_ENV === PRODUCTION_ENV) {
result = true;
}
} catch (err) {
//
}
if (!result) {
try {
if (window.process.env.NODE_ENV === PRODUCTION_ENV) {
result = true;
}
} catch (err) {
//
}
}
return result;
};
export default {
ieVersion,
isProduction,
};