ad82aeaf72da6c5c79d25c5e689ccab92ef4b83bf5c26ad22dde9b98cb13399f82ad37399cbffe1759537ee58a8982ca27ddc3b0f45d2d5cf0877626315c5d 304 B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = inherit;
  6. function inherit(key, child, parent) {
  7. if (child && parent) {
  8. child[key] = Array.from(new Set([].concat(child[key], parent[key]).filter(Boolean)));
  9. }
  10. }
  11. //# sourceMappingURL=inherit.js.map