Hey javascript people. Here is how you handle a situation where you can't continue
```typescript
if (records.length === 0) {
throw Error('No records provided, cannot continue.')
}
```
Not a quiet early return, not adding a `?.1` question mark to every object with a property, not wrapping in a try/catch-blank catch body.
Of course there is a global error handler that is discarding all errors, so you gotta find that too & disable it.