-
Notifications
You must be signed in to change notification settings - Fork 1
/
industry.js
80 lines (78 loc) · 1.5 KB
/
industry.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const mil = (n) => n * 1000000
/** Applicable industries */
const industry = {
healthcare:{
label:'Healthcare',
impact:mil(10.1),
regulated:true
},
financial:{
label:'Financial',
impact:mil(5.97),
regulated:true
},
energy:{
label:'Energy',
impact:mil(4.72),
regulated:true
},
pharmaceuticals:{
label:'Pharmaceuticals',
impact:mil(5.01),
regulated:true
},
industrial:{
label:'Industrial',
impact:mil(4.47)
},
technology:{
label:'Technology',
impact:mil(4.97)
},
education:{
label:'Education',
impact:mil(3.86),
regulated:true
},
services:{
label:'Services',
impact:mil(4.70)
},
entertainment:{
label:'Entertainment',
impact:mil(3.83)
},
transportation:{
label:'Transportation',
impact:mil(3.59)
},
communication:{
label:'Communication',
impact:mil(3.62)
},
consumer:{
label:'Consumer',
impact:mil(3.86)
},
media:{
label:'Media',
impact:mil(3.15)
},
hospitality:{
label:'Hospitality',
impact:mil(2.94)
},
retail:{
label:'Retail',
impact:mil(3.28)
},
research:{
label:'Research',
impact:mil(3.88)
},
public:{
label:'Public',
impact:mil(2.07)
}
}
module.exports = industry