1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 17:41:18 +01:00

Create node_modules folder

This commit is contained in:
Minionguyjpro
2023-07-08 08:34:15 +00:00
parent beccd32062
commit 19e95e7930
416 changed files with 96683 additions and 0 deletions

17
node_modules/@octokit/endpoint/dist-src/defaults.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import { getUserAgent } from "universal-user-agent";
import { VERSION } from "./version";
const userAgent = `octokit-endpoint.js/${VERSION} ${getUserAgent()}`;
// DEFAULTS has all properties set that EndpointOptions has, except url.
// So we use RequestParameters and add method as additional required property.
export const DEFAULTS = {
method: "GET",
baseUrl: "https://api.github.com",
headers: {
accept: "application/vnd.github.v3+json",
"user-agent": userAgent,
},
mediaType: {
format: "",
previews: [],
},
};