mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
I explicitly had to downgrade "@octokit/plugin-retry" to "^6.0.0". Other dependencies were upgraded.
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
import { DEFAULTS } from "./defaults.js";
|
|
import { merge } from "./merge.js";
|
|
import { parse } from "./parse.js";
|
|
function endpointWithDefaults(defaults, route, options) {
|
|
return parse(merge(defaults, route, options));
|
|
}
|
|
export {
|
|
endpointWithDefaults
|
|
};
|