mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
When performing simple requests, such as
```ts
import { Gitlab } from "@gitbeaker/browser";
const api = new Gitlab({ token, host });
const res = await api.Issues.show(projectId, issueIid);
```
I used to get errors, such as
```console
index.js:11539 RangeError: Invalid array length
...
```
and this fixed it.