Philipp Horstenkamp 6e037d6837
Some checks failed
Auto Maintenance Cycle / pre-commit Autoupdate (push) Failing after 33s
Added the node modules.
2023-11-19 03:45:16 +01:00

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()}`,
},
});