-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexcuses.js
More file actions
24 lines (23 loc) · 812 Bytes
/
excuses.js
File metadata and controls
24 lines (23 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const excuses = [
'You must be missing some of the dependencies',
'How is that possible?',
'I couldn\'t find any library that can even do that',
'That wouldn\'t have made economic sense.',
'The project manager told me to do it that way.',
'Try rebooting your router.',
'Are you sure?',
'That\'s a problem with the hosts.',
'It wasn\'t in the spec.',
'The person responsible doesn\'t work here any more.',
'Probably down to the leap year.',
'That code was written by an old developer.',
'Well I\'m surprised it is even working at all.',
'I must have misunderstood.',
'It isn\'t in my ticketing system.',
'Try rebotting.',
'You\'re doing it wrong.',
'It worked fine for me when I developed it.',
'We didn\'t write that part.',
'It\'s always been like that.'
];
export default excuses;