mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-08 00:37:27 +00:00
10 lines
321 B
JavaScript
10 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;
|
|
}
|
|
}
|