Skip to content

Commit

Permalink
Revert "docs(README): update examples to use ESM (#611)"
Browse files Browse the repository at this point in the history
This reverts commit 7392e4b.
  • Loading branch information
wolfy1339 committed May 2, 2024
1 parent 8e79d82 commit 1389b71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ Node
Install with `npm install @octokit/core @octokit/plugin-paginate-rest`. Optionally replace `@octokit/core` with a core-compatible module

```js
import { Octokit } from "@octokit/core";
import {
const { Octokit } = require("@octokit/core");
const {
paginateRest,
composePaginateRest,
} from "@octokit/plugin-paginate-rest";
} = require("@octokit/plugin-paginate-rest");
```

</td></tr>
Expand Down

0 comments on commit 1389b71

Please sign in to comment.