-
Notifications
You must be signed in to change notification settings - Fork 10
/
companies.js
131 lines (127 loc) · 4.82 KB
/
companies.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
Copyright 2019 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/
module.exports = {
map: {
'': 'Apple',
zendesk: 'Zendesk',
zeit: 'Zeit',
zalando: 'Zalando DE',
yelp: 'Yelp',
yandex: 'Yandex',
yahoo: 'Yahoo!',
wso2: 'WSO2',
wix: 'WIX',
wikimedia: 'WikiMedia Foundation',
wechat: 'WeChat',
vmware: 'VMWare',
unity: 'Unity Technologies',
uber: 'Uber',
twitter: 'Twitter',
travis: 'Travis CI',
thoughtworks: 'ThoughtWorks',
tencent: 'Tencent',
telerik: 'Telerik',
suse: 'SUSE',
stripe: 'Stripe',
square: 'Square, Inc.',
spotify: 'Spotify',
snapchat: 'Snapchat',
slack: 'Slack',
shopify: 'Shopify',
sap: 'SAP SE',
samsung: 'Samsung',
salesforce: 'Salesforce',
redhat: 'Red Hat',
'red hat': 'Red Hat',
rackspace: 'Rackspace',
puppet: 'Puppet Labs',
pivotal: 'VMWare',
paypal: 'PayPal',
palantir: 'Palantir Technologies',
oracle: 'Oracle',
odoo: 'Odoo',
observable: 'Observable',
nvidia: 'NVIDIA',
nuxeo: 'Nuxeo',
nokia: 'Nokia',
netflix: 'Netflix',
netease: 'NetEase',
mozilla: 'Mozilla',
mongodb: 'MongoDB',
microsoft: 'Microsoft',
mapbox: 'Mapbox',
magento: 'Adobe',
lyft: 'Lyft',
linkedin: 'LinkedIn',
liferay: 'Liferay',
kitware: 'Kitware',
jetbrains: 'JetBrains',
intel: 'Intel',
inria: 'INRIA',
ibm: 'IBM',
huawei: 'Huawei',
guardian: 'The Guardian',
google: 'Google',
github: 'Microsoft',
fotolia: 'Adobe',
facebook: 'Facebook',
'european bioinformatics': 'EMBL-EBI',
'eth z': 'ETH Zurich',
esri: 'ESRI',
ericsson: 'Ericsson',
epfl: 'EPFL',
epam: 'EPAM Systems',
embl: 'EMBL-EBI',
elastic: 'Elastic',
docker: 'Docker',
datadog: 'DataDog',
cnrs: 'CNRS',
cisco: {
label: 'Cisco Systems',
ignore: /francisco/i
},
'capital one': 'Capital One',
canonical: 'Canonical',
'booking.com': 'Booking.com',
behance: 'Adobe',
bbc: 'BBC',
baidu: 'Baidu',
aws: 'Amazon',
aviary: 'Adobe',
automattic: 'Automattic',
atlassian: 'Atlassian',
apple: 'Apple',
andela: 'Andela',
amzn: 'Amazon',
amazon: 'Amazon',
alibaba: 'Alibaba',
airbnb: 'Airbnb',
adobe: 'Adobe',
accenture: 'Accenture'
},
is_empty: (co) => {
if (!co || co.length === 0) return true;
let n = co.toLowerCase();
return n === 'null' || n === 'na' || n === 'n/a' || n === 'none' || n === '-' || n === 'no' || n === '.';
},
is_corporation: (co) => {
let n = co.toLowerCase();
return n.indexOf('freelance') === -1 && n.indexOf('student') === -1 &&
n.indexOf('university') === -1 && n.indexOf('self') === -1 &&
n.indexOf('personal') === -1 && n !== 'mit' && n !== 'uc berkeley' &&
n !== 'china' && n !== 'japan' && n.indexOf('college') === -1 &&
n !== 'ucla' && n.indexOf('independent') === -1 && n !== 'sjtu' &&
n !== 'virginia tech' && n !== 'myself' && n.indexOf('institute of tech') === -1 &&
n !== 'georgia tech' && n !== 'uc davis' && n !== 'ucsd' && n !== 'uc san diego' &&
n.indexOf('individual') === -1;
},
catch_all: /microsoft|google|amazon|amzn|aws|red hat|redhat|ibm|pivotal|intel|facebook|alibaba|uber|wix|github|tencent|baidu|apple||mozilla|oracle|shopify|mongodb|vmware|netflix|salesforce|linkedin|palantir|yahoo|mapbox|unity|automattic|travis|spotify|zalando|esri|sap|epam|telerik|stripe|kitware|suse|odoo|yandex|adobe|airbnb|guardian|docker|nuxeo|nvidia|elastic|yelp|wso2|inria|puppet|datadog|jetbrains|canonical|rackspace|thoughtworks|andela|liferay|epfl|cnrs|embl|european bioinformatics|accenture|cisco|ericsson|capital one|huawei|booking\.com|netease|bbc|nokia|zendesk|paypal|eth z|samsung|slack|twitter|lyft|snapchat|zeit|atlassian|square|wechat|wikimedia|observable|magento|behance|aviary|fotolia/gi
};