UNPKG

388 BJavaScriptView Raw
1import { getUserAgent } from "universal-user-agent";
2import { VERSION } from "./version.js";
3const userAgent = `octokit-endpoint.js/${VERSION} ${getUserAgent()}`;
4const DEFAULTS = {
5 method: "GET",
6 baseUrl: "https://api.github.com",
7 headers: {
8 accept: "application/vnd.github.v3+json",
9 "user-agent": userAgent
10 },
11 mediaType: {
12 format: ""
13 }
14};
15export {
16 DEFAULTS
17};