Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/whoops.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/* tslint:disable */
// TODO - I know this is a mess but I don't have time to do it properly atm
// FIXME - we keep getting bugs here, should probably fix it
export const complicatedThingUntestedThing = (apples: Object[], pears: Object[]) => {
if (apples) {
if (pears) {
if (apples.length > 1) {
if (pears.length > 1) {
for (const apple of apples) {
if (apple) {
if (pears.includes(apple)) {
const pear = pears.find(p => p === apple);
if (!pear) {
throw new Error('cannot compare apples and pears');
} else {
return pear === apple;
}
} else {
throw new Error('cannot compare apples and pears');
}
}
}
}
}
}
}
};