mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-12-15 06:27:06 +00:00
11 lines
321 B
JavaScript
11 lines
321 B
JavaScript
import { paginatingEndpoints, } from "./generated/paginating-endpoints";
|
|
export { paginatingEndpoints } from "./generated/paginating-endpoints";
|
|
export function isPaginatingEndpoint(arg) {
|
|
if (typeof arg === "string") {
|
|
return paginatingEndpoints.includes(arg);
|
|
}
|
|
else {
|
|
return false;
|
|
}
|
|
}
|