mirror of
https://github.com/diligencia/semantic-branch-version.git
synced 2024-11-23 22:23:51 +08:00
13 lines
435 B
JavaScript
13 lines
435 B
JavaScript
|
import { request as Request } from "@octokit/request";
|
||
|
import { graphql } from "./graphql";
|
||
|
export function withDefaults(request, newDefaults) {
|
||
|
const newRequest = request.defaults(newDefaults);
|
||
|
const newApi = (query, options) => {
|
||
|
return graphql(newRequest, query, options);
|
||
|
};
|
||
|
return Object.assign(newApi, {
|
||
|
defaults: withDefaults.bind(null, newRequest),
|
||
|
endpoint: Request.endpoint,
|
||
|
});
|
||
|
}
|