mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-22 11:29:28 +08:00
08d466b6ab
Co-authored-by: Oliver King <oking3@uncc.edu>
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));
|
|
}
|