mirror of
https://gitee.com/github-actions/setup-node
synced 2024-04-27 22:27:08 +08:00
6 lines
184 B
JavaScript
6 lines
184 B
JavaScript
|
import { merge } from "./merge";
|
||
|
import { parse } from "./parse";
|
||
|
export function endpointWithDefaults(defaults, route, options) {
|
||
|
return parse(merge(defaults, route, options));
|
||
|
}
|