mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2024-11-06 20:15:48 +00:00
14 lines
481 B
JavaScript
14 lines
481 B
JavaScript
|
import { endpointWithDefaults } from "./endpoint-with-defaults";
|
||
|
import { merge } from "./merge";
|
||
|
import { parse } from "./parse";
|
||
|
export function withDefaults(oldDefaults, newDefaults) {
|
||
|
const DEFAULTS = merge(oldDefaults, newDefaults);
|
||
|
const endpoint = endpointWithDefaults.bind(null, DEFAULTS);
|
||
|
return Object.assign(endpoint, {
|
||
|
DEFAULTS,
|
||
|
defaults: withDefaults.bind(null, DEFAULTS),
|
||
|
merge: merge.bind(null, DEFAULTS),
|
||
|
parse
|
||
|
});
|
||
|
}
|