Update to the latest version of @actions/github.
This commit is contained in:
parent
55458a1ab1
commit
9ed519fa12
419 changed files with 56978 additions and 151535 deletions
15
node_modules/@octokit/plugin-paginate-rest/dist-src/index.js
generated
vendored
Normal file
15
node_modules/@octokit/plugin-paginate-rest/dist-src/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { VERSION } from "./version";
|
||||
import { paginate } from "./paginate";
|
||||
import { iterator } from "./iterator";
|
||||
/**
|
||||
* @param octokit Octokit instance
|
||||
* @param options Options passed to Octokit constructor
|
||||
*/
|
||||
export function paginateRest(octokit) {
|
||||
return {
|
||||
paginate: Object.assign(paginate.bind(null, octokit), {
|
||||
iterator: iterator.bind(null, octokit),
|
||||
}),
|
||||
};
|
||||
}
|
||||
paginateRest.VERSION = VERSION;
|
||||
Loading…
Add table
Add a link
Reference in a new issue