You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
340 B
8 lines
340 B
5 months ago
|
import { __assign } from "tslib";
|
||
|
import { compact } from "./compact.js";
|
||
|
export function mergeOptions(defaults, options) {
|
||
|
return compact(defaults, options, options.variables && {
|
||
|
variables: compact(__assign(__assign({}, (defaults && defaults.variables)), options.variables)),
|
||
|
});
|
||
|
}
|
||
|
//# sourceMappingURL=mergeOptions.js.map
|