mirror of
https://github.com/SethCohen/github-releases-to-discord
synced 2026-09-07 20:03:23 +00:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
import { DEFAULTS } from "./defaults";
|
|
import { merge } from "./merge";
|
|
import { parse } from "./parse";
|
|
function endpointWithDefaults(defaults, route, options) {
|
|
return parse(merge(defaults, route, options));
|
|
}
|
|
export {
|
|
endpointWithDefaults
|
|
};
|