Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
cal.com
/
cal.com
/
node_modules
/
new-github-issue-url
/
Filename :
index.js
back
Copy
'use strict'; module.exports = (options = {}) => { let repoUrl; if (options.repoUrl) { repoUrl = options.repoUrl; } else if (options.user && options.repo) { repoUrl = `https://github.com/${options.user}/${options.repo}`; } else { throw new Error('You need to specify either the `repoUrl` option or both the `user` and `repo` options'); } const url = new URL(`${repoUrl}/issues/new`); const types = [ 'body', 'title', 'labels', 'template', 'milestone', 'assignee', 'projects' ]; for (const type of types) { let value = options[type]; if (value === undefined) { continue; } if (type === 'labels' || type === 'projects') { if (!Array.isArray(value)) { throw new TypeError(`The \`${type}\` option should be an array`); } value = value.join(','); } url.searchParams.set(type, value); } return url.toString(); }; // TODO: Remove this for the next major release module.exports.default = module.exports;