setup-node/node_modules/@octokit/rest/plugins/authentication/validate.js
eric sciple 2b95e76931 .
2020-01-24 12:20:19 -05:00

21 lines
355 B
JavaScript

module.exports = validateAuth;
function validateAuth(auth) {
if (typeof auth === "string") {
return;
}
if (typeof auth === "function") {
return;
}
if (auth.username && auth.password) {
return;
}
if (auth.clientId && auth.clientSecret) {
return;
}
throw new Error(`Invalid "auth" option: ${JSON.stringify(auth)}`);
}