10 lines
327 B
JavaScript
10 lines
327 B
JavaScript
|
import { endpoint } from "@octokit/endpoint";
|
||
|
import { getUserAgent } from "universal-user-agent";
|
||
|
import { VERSION } from "./version";
|
||
|
import withDefaults from "./with-defaults";
|
||
|
export const request = withDefaults(endpoint, {
|
||
|
headers: {
|
||
|
"user-agent": `octokit-request.js/${VERSION} ${getUserAgent()}`,
|
||
|
},
|
||
|
});
|