Files
med-notes/.pnpm-store/v10/files/05/ad82aeaf72da6c5c79d25c5e689ccab92ef4b83bf5c26ad22dde9b98cb13399f82ad37399cbffe1759537ee58a8982ca27ddc3b0f45d2d5cf0877626315c5d
2025-05-09 05:30:08 +02:00

14 lines
304 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = inherit;
function inherit(key, child, parent) {
if (child && parent) {
child[key] = Array.from(new Set([].concat(child[key], parent[key]).filter(Boolean)));
}
}
//# sourceMappingURL=inherit.js.map