Urara-Blog/node_modules/.pnpm-store/v3/files/65/bf0ed17f2750b2c9f23f9ed20073663153cff7951e1930360889359e9d9c9986107f232931f79606afe98b0d896c975dbac45804a3532aef5b8822493adca8
2022-08-14 01:14:53 +08:00

12 lines
No EOL
267 B
Text

"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)));
}
}