easy-file-system 2.1.20 → 2.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,13 +9,13 @@ Object.defineProperty(exports, "default", {
9
9
  }
10
10
  });
11
11
  var _index = require("../../../index");
12
- function _assertThisInitialized(self) {
12
+ function _assert_this_initialized(self) {
13
13
  if (self === void 0) {
14
14
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
15
15
  }
16
16
  return self;
17
17
  }
18
- function _classCallCheck(instance, Constructor) {
18
+ function _class_call_check(instance, Constructor) {
19
19
  if (!(instance instanceof Constructor)) {
20
20
  throw new TypeError("Cannot call a class as a function");
21
21
  }
@@ -29,12 +29,12 @@ function _defineProperties(target, props) {
29
29
  Object.defineProperty(target, descriptor.key, descriptor);
30
30
  }
31
31
  }
32
- function _createClass(Constructor, protoProps, staticProps) {
32
+ function _create_class(Constructor, protoProps, staticProps) {
33
33
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
34
34
  if (staticProps) _defineProperties(Constructor, staticProps);
35
35
  return Constructor;
36
36
  }
37
- function _defineProperty(obj, key, value) {
37
+ function _define_property(obj, key, value) {
38
38
  if (key in obj) {
39
39
  Object.defineProperty(obj, key, {
40
40
  value: value,
@@ -51,23 +51,23 @@ function _get(target, property, receiver) {
51
51
  if (typeof Reflect !== "undefined" && Reflect.get) {
52
52
  _get = Reflect.get;
53
53
  } else {
54
- _get = function _get(target, property, receiver) {
55
- var base = _superPropBase(target, property);
54
+ _get = function get(target, property, receiver) {
55
+ var base = _super_prop_base(target, property);
56
56
  if (!base) return;
57
57
  var desc = Object.getOwnPropertyDescriptor(base, property);
58
58
  if (desc.get) {
59
- return desc.get.call(receiver);
59
+ return desc.get.call(receiver || target);
60
60
  }
61
61
  return desc.value;
62
62
  };
63
63
  }
64
64
  return _get(target, property, receiver || target);
65
65
  }
66
- function _getPrototypeOf(o) {
67
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
66
+ function _get_prototype_of(o) {
67
+ _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
68
68
  return o.__proto__ || Object.getPrototypeOf(o);
69
69
  };
70
- return _getPrototypeOf(o);
70
+ return _get_prototype_of(o);
71
71
  }
72
72
  function _inherits(subClass, superClass) {
73
73
  if (typeof superClass !== "function" && superClass !== null) {
@@ -80,33 +80,33 @@ function _inherits(subClass, superClass) {
80
80
  configurable: true
81
81
  }
82
82
  });
83
- if (superClass) _setPrototypeOf(subClass, superClass);
83
+ if (superClass) _set_prototype_of(subClass, superClass);
84
84
  }
85
- function _possibleConstructorReturn(self, call) {
86
- if (call && (_typeof(call) === "object" || typeof call === "function")) {
85
+ function _possible_constructor_return(self, call) {
86
+ if (call && (_type_of(call) === "object" || typeof call === "function")) {
87
87
  return call;
88
88
  }
89
- return _assertThisInitialized(self);
89
+ return _assert_this_initialized(self);
90
90
  }
91
- function _setPrototypeOf(o, p) {
92
- _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
91
+ function _set_prototype_of(o, p) {
92
+ _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
93
93
  o.__proto__ = p;
94
94
  return o;
95
95
  };
96
- return _setPrototypeOf(o, p);
96
+ return _set_prototype_of(o, p);
97
97
  }
98
- function _superPropBase(object, property) {
98
+ function _super_prop_base(object, property) {
99
99
  while(!Object.prototype.hasOwnProperty.call(object, property)){
100
- object = _getPrototypeOf(object);
100
+ object = _get_prototype_of(object);
101
101
  if (object === null) break;
102
102
  }
103
103
  return object;
104
104
  }
105
- var _typeof = function(obj) {
105
+ function _type_of(obj) {
106
106
  "@swc/helpers - typeof";
107
107
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
108
- };
109
- function _isNativeReflectConstruct() {
108
+ }
109
+ function _is_native_reflect_construct() {
110
110
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
111
111
  if (Reflect.construct.sham) return false;
112
112
  if (typeof Proxy === "function") return true;
@@ -117,31 +117,31 @@ function _isNativeReflectConstruct() {
117
117
  return false;
118
118
  }
119
119
  }
120
- function _createSuper(Derived) {
121
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
120
+ function _create_super(Derived) {
121
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
122
122
  return function _createSuperInternal() {
123
- var Super = _getPrototypeOf(Derived), result;
123
+ var Super = _get_prototype_of(Derived), result;
124
124
  if (hasNativeReflectConstruct) {
125
- var NewTarget = _getPrototypeOf(this).constructor;
125
+ var NewTarget = _get_prototype_of(this).constructor;
126
126
  result = Reflect.construct(Super, arguments, NewTarget);
127
127
  } else {
128
128
  result = Super.apply(this, arguments);
129
129
  }
130
- return _possibleConstructorReturn(this, result);
130
+ return _possible_constructor_return(this, result);
131
131
  };
132
132
  }
133
133
  var FirstExplorer = /*#__PURE__*/ function(Explorer) {
134
134
  _inherits(FirstExplorer, Explorer);
135
- var _super = _createSuper(FirstExplorer);
135
+ var _super = _create_super(FirstExplorer);
136
136
  function FirstExplorer() {
137
- _classCallCheck(this, FirstExplorer);
137
+ _class_call_check(this, FirstExplorer);
138
138
  return _super.apply(this, arguments);
139
139
  }
140
- _createClass(FirstExplorer, [
140
+ _create_class(FirstExplorer, [
141
141
  {
142
142
  key: "initialise",
143
143
  value: function initialise() {
144
- _get(_getPrototypeOf(FirstExplorer.prototype), "initialise", this).call(this);
144
+ _get(_get_prototype_of(FirstExplorer.prototype), "initialise", this).call(this);
145
145
  this.addFilePath("directory1/file1.txt");
146
146
  this.addFilePath("directory1/file2.txt");
147
147
  this.addDirectoryPath("directory1/directory3");
@@ -150,9 +150,9 @@ var FirstExplorer = /*#__PURE__*/ function(Explorer) {
150
150
  ]);
151
151
  return FirstExplorer;
152
152
  }(_index.Explorer);
153
- _defineProperty(FirstExplorer, "defaultProperties", {
153
+ _define_property(FirstExplorer, "defaultProperties", {
154
154
  className: "first",
155
155
  reference: "first-explorer"
156
156
  });
157
157
 
158
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL3ZpZXcvZXhwbG9yZXIvZmlyc3QuanMiLCI8PGpzeC1jb25maWctcHJhZ21hLmpzPj4iXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB7IEV4cGxvcmVyIH0gZnJvbSBcIi4uLy4uLy4uL2luZGV4XCI7ICAvLy9cblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgRmlyc3RFeHBsb3JlciBleHRlbmRzIEV4cGxvcmVyIHtcbiAgaW5pdGlhbGlzZSgpIHtcbiAgICBzdXBlci5pbml0aWFsaXNlKCk7XG5cbiAgICB0aGlzLmFkZEZpbGVQYXRoKFwiZGlyZWN0b3J5MS9maWxlMS50eHRcIik7XG4gICAgdGhpcy5hZGRGaWxlUGF0aChcImRpcmVjdG9yeTEvZmlsZTIudHh0XCIpO1xuXG4gICAgdGhpcy5hZGREaXJlY3RvcnlQYXRoKFwiZGlyZWN0b3J5MS9kaXJlY3RvcnkzXCIpO1xuICB9XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJmaXJzdFwiLFxuICAgIHJlZmVyZW5jZTogXCJmaXJzdC1leHBsb3JlclwiXG4gIH07XG59XG4iLCJSZWFjdC5jcmVhdGVFbGVtZW50Il0sIm5hbWVzIjpbIkZpcnN0RXhwbG9yZXIiLCJpbml0aWFsaXNlIiwiYWRkRmlsZVBhdGgiLCJhZGREaXJlY3RvcnlQYXRoIiwiRXhwbG9yZXIiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsInJlZmVyZW5jZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7ZUFJcUJBOzs7cUJBRkk7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRVYsSUFBQSxBQUFNQSw4QkFBTjtjQUFNQTs4QkFBQUE7YUFBQUE7OEJBQUFBOzs7aUJBQUFBOztZQUNuQkMsS0FBQUE7bUJBQUFBLFNBQUFBLGFBQWE7Z0JBQ1gscUJBRmlCRCwwQkFFWEMsY0FBTixJQUFLO2dCQUVMLElBQUksQ0FBQ0MsV0FBVyxDQUFDO2dCQUNqQixJQUFJLENBQUNBLFdBQVcsQ0FBQztnQkFFakIsSUFBSSxDQUFDQyxnQkFBZ0IsQ0FBQztZQUN4Qjs7O1dBUm1CSDtFQUFzQkksZUFBUTtBQVVqRCxnQkFWbUJKLGVBVVpLLHFCQUFvQjtJQUN6QkMsV0FBVztJQUNYQyxXQUFXO0FBQ2IifQ==
158
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL3ZpZXcvZXhwbG9yZXIvZmlyc3QuanMiLCI8PGpzeC1jb25maWctcHJhZ21hLmpzPj4iXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB7IEV4cGxvcmVyIH0gZnJvbSBcIi4uLy4uLy4uL2luZGV4XCI7ICAvLy9cblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgRmlyc3RFeHBsb3JlciBleHRlbmRzIEV4cGxvcmVyIHtcbiAgaW5pdGlhbGlzZSgpIHtcbiAgICBzdXBlci5pbml0aWFsaXNlKCk7XG5cbiAgICB0aGlzLmFkZEZpbGVQYXRoKFwiZGlyZWN0b3J5MS9maWxlMS50eHRcIik7XG4gICAgdGhpcy5hZGRGaWxlUGF0aChcImRpcmVjdG9yeTEvZmlsZTIudHh0XCIpO1xuXG4gICAgdGhpcy5hZGREaXJlY3RvcnlQYXRoKFwiZGlyZWN0b3J5MS9kaXJlY3RvcnkzXCIpO1xuICB9XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJmaXJzdFwiLFxuICAgIHJlZmVyZW5jZTogXCJmaXJzdC1leHBsb3JlclwiXG4gIH07XG59XG4iLCJSZWFjdC5jcmVhdGVFbGVtZW50Il0sIm5hbWVzIjpbIkZpcnN0RXhwbG9yZXIiLCJpbml0aWFsaXNlIiwiYWRkRmlsZVBhdGgiLCJhZGREaXJlY3RvcnlQYXRoIiwiRXhwbG9yZXIiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsInJlZmVyZW5jZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7ZUFJcUJBOzs7cUJBRkk7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRVYsSUFBQSxBQUFNQSw4QkFBTjtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7a0JBQUFBOztZQUNuQkMsS0FBQUE7bUJBQUFBLFNBQUFBLGFBQWE7Z0JBQ1gsdUJBRmlCRCwwQkFFWEMsY0FBTixJQUFLO2dCQUVMLElBQUksQ0FBQ0MsV0FBVyxDQUFDO2dCQUNqQixJQUFJLENBQUNBLFdBQVcsQ0FBQztnQkFFakIsSUFBSSxDQUFDQyxnQkFBZ0IsQ0FBQztZQUN4Qjs7O1dBUm1CSDtFQUFzQkksZUFBUTtBQVVqRCxpQkFWbUJKLGVBVVpLLHFCQUFvQjtJQUN6QkMsV0FBVztJQUNYQyxXQUFXO0FBQ2IifQ==
@@ -9,13 +9,13 @@ Object.defineProperty(exports, "default", {
9
9
  }
10
10
  });
11
11
  var _index = require("../../../index");
12
- function _assertThisInitialized(self) {
12
+ function _assert_this_initialized(self) {
13
13
  if (self === void 0) {
14
14
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
15
15
  }
16
16
  return self;
17
17
  }
18
- function _classCallCheck(instance, Constructor) {
18
+ function _class_call_check(instance, Constructor) {
19
19
  if (!(instance instanceof Constructor)) {
20
20
  throw new TypeError("Cannot call a class as a function");
21
21
  }
@@ -29,12 +29,12 @@ function _defineProperties(target, props) {
29
29
  Object.defineProperty(target, descriptor.key, descriptor);
30
30
  }
31
31
  }
32
- function _createClass(Constructor, protoProps, staticProps) {
32
+ function _create_class(Constructor, protoProps, staticProps) {
33
33
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
34
34
  if (staticProps) _defineProperties(Constructor, staticProps);
35
35
  return Constructor;
36
36
  }
37
- function _defineProperty(obj, key, value) {
37
+ function _define_property(obj, key, value) {
38
38
  if (key in obj) {
39
39
  Object.defineProperty(obj, key, {
40
40
  value: value,
@@ -51,23 +51,23 @@ function _get(target, property, receiver) {
51
51
  if (typeof Reflect !== "undefined" && Reflect.get) {
52
52
  _get = Reflect.get;
53
53
  } else {
54
- _get = function _get(target, property, receiver) {
55
- var base = _superPropBase(target, property);
54
+ _get = function get(target, property, receiver) {
55
+ var base = _super_prop_base(target, property);
56
56
  if (!base) return;
57
57
  var desc = Object.getOwnPropertyDescriptor(base, property);
58
58
  if (desc.get) {
59
- return desc.get.call(receiver);
59
+ return desc.get.call(receiver || target);
60
60
  }
61
61
  return desc.value;
62
62
  };
63
63
  }
64
64
  return _get(target, property, receiver || target);
65
65
  }
66
- function _getPrototypeOf(o) {
67
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
66
+ function _get_prototype_of(o) {
67
+ _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
68
68
  return o.__proto__ || Object.getPrototypeOf(o);
69
69
  };
70
- return _getPrototypeOf(o);
70
+ return _get_prototype_of(o);
71
71
  }
72
72
  function _inherits(subClass, superClass) {
73
73
  if (typeof superClass !== "function" && superClass !== null) {
@@ -80,33 +80,33 @@ function _inherits(subClass, superClass) {
80
80
  configurable: true
81
81
  }
82
82
  });
83
- if (superClass) _setPrototypeOf(subClass, superClass);
83
+ if (superClass) _set_prototype_of(subClass, superClass);
84
84
  }
85
- function _possibleConstructorReturn(self, call) {
86
- if (call && (_typeof(call) === "object" || typeof call === "function")) {
85
+ function _possible_constructor_return(self, call) {
86
+ if (call && (_type_of(call) === "object" || typeof call === "function")) {
87
87
  return call;
88
88
  }
89
- return _assertThisInitialized(self);
89
+ return _assert_this_initialized(self);
90
90
  }
91
- function _setPrototypeOf(o, p) {
92
- _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
91
+ function _set_prototype_of(o, p) {
92
+ _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
93
93
  o.__proto__ = p;
94
94
  return o;
95
95
  };
96
- return _setPrototypeOf(o, p);
96
+ return _set_prototype_of(o, p);
97
97
  }
98
- function _superPropBase(object, property) {
98
+ function _super_prop_base(object, property) {
99
99
  while(!Object.prototype.hasOwnProperty.call(object, property)){
100
- object = _getPrototypeOf(object);
100
+ object = _get_prototype_of(object);
101
101
  if (object === null) break;
102
102
  }
103
103
  return object;
104
104
  }
105
- var _typeof = function(obj) {
105
+ function _type_of(obj) {
106
106
  "@swc/helpers - typeof";
107
107
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
108
- };
109
- function _isNativeReflectConstruct() {
108
+ }
109
+ function _is_native_reflect_construct() {
110
110
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
111
111
  if (Reflect.construct.sham) return false;
112
112
  if (typeof Proxy === "function") return true;
@@ -117,31 +117,31 @@ function _isNativeReflectConstruct() {
117
117
  return false;
118
118
  }
119
119
  }
120
- function _createSuper(Derived) {
121
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
120
+ function _create_super(Derived) {
121
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
122
122
  return function _createSuperInternal() {
123
- var Super = _getPrototypeOf(Derived), result;
123
+ var Super = _get_prototype_of(Derived), result;
124
124
  if (hasNativeReflectConstruct) {
125
- var NewTarget = _getPrototypeOf(this).constructor;
125
+ var NewTarget = _get_prototype_of(this).constructor;
126
126
  result = Reflect.construct(Super, arguments, NewTarget);
127
127
  } else {
128
128
  result = Super.apply(this, arguments);
129
129
  }
130
- return _possibleConstructorReturn(this, result);
130
+ return _possible_constructor_return(this, result);
131
131
  };
132
132
  }
133
133
  var SecondExplorer = /*#__PURE__*/ function(Explorer) {
134
134
  _inherits(SecondExplorer, Explorer);
135
- var _super = _createSuper(SecondExplorer);
135
+ var _super = _create_super(SecondExplorer);
136
136
  function SecondExplorer() {
137
- _classCallCheck(this, SecondExplorer);
137
+ _class_call_check(this, SecondExplorer);
138
138
  return _super.apply(this, arguments);
139
139
  }
140
- _createClass(SecondExplorer, [
140
+ _create_class(SecondExplorer, [
141
141
  {
142
142
  key: "initialise",
143
143
  value: function initialise() {
144
- _get(_getPrototypeOf(SecondExplorer.prototype), "initialise", this).call(this);
144
+ _get(_get_prototype_of(SecondExplorer.prototype), "initialise", this).call(this);
145
145
  this.addFilePath("directory2/file4.txt");
146
146
  this.addFilePath("directory2/file5.txt");
147
147
  }
@@ -149,7 +149,7 @@ var SecondExplorer = /*#__PURE__*/ function(Explorer) {
149
149
  ]);
150
150
  return SecondExplorer;
151
151
  }(_index.Explorer);
152
- _defineProperty(SecondExplorer, "defaultProperties", {
152
+ _define_property(SecondExplorer, "defaultProperties", {
153
153
  className: "first",
154
154
  reference: "second-explorer",
155
155
  ignoredReferences: [
@@ -157,4 +157,4 @@ _defineProperty(SecondExplorer, "defaultProperties", {
157
157
  ]
158
158
  });
159
159
 
160
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL3ZpZXcvZXhwbG9yZXIvc2Vjb25kLmpzIiwiPDxqc3gtY29uZmlnLXByYWdtYS5qcz4+Il0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgeyBFeHBsb3JlciB9IGZyb20gXCIuLi8uLi8uLi9pbmRleFwiOyAgLy8vXG5cbmV4cG9ydCBkZWZhdWx0IGNsYXNzIFNlY29uZEV4cGxvcmVyIGV4dGVuZHMgRXhwbG9yZXIge1xuICBpbml0aWFsaXNlKCkge1xuICAgIHN1cGVyLmluaXRpYWxpc2UoKTtcblxuICAgIHRoaXMuYWRkRmlsZVBhdGgoXCJkaXJlY3RvcnkyL2ZpbGU0LnR4dFwiKTtcbiAgICB0aGlzLmFkZEZpbGVQYXRoKFwiZGlyZWN0b3J5Mi9maWxlNS50eHRcIik7XG4gIH1cblxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcImZpcnN0XCIsXG4gICAgcmVmZXJlbmNlOiBcInNlY29uZC1leHBsb3JlclwiLFxuICAgIGlnbm9yZWRSZWZlcmVuY2VzOiBbIFwiZmlyc3QtZXhwbG9yZXJcIiBdXG4gIH07XG59XG4iLCJSZWFjdC5jcmVhdGVFbGVtZW50Il0sIm5hbWVzIjpbIlNlY29uZEV4cGxvcmVyIiwiaW5pdGlhbGlzZSIsImFkZEZpbGVQYXRoIiwiRXhwbG9yZXIiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsInJlZmVyZW5jZSIsImlnbm9yZWRSZWZlcmVuY2VzIl0sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7OztlQUlxQkE7OztxQkFGSTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFVixJQUFBLEFBQU1BLCtCQUFOO2NBQU1BOzhCQUFBQTthQUFBQTs4QkFBQUE7OztpQkFBQUE7O1lBQ25CQyxLQUFBQTttQkFBQUEsU0FBQUEsYUFBYTtnQkFDWCxxQkFGaUJELDJCQUVYQyxjQUFOLElBQUs7Z0JBRUwsSUFBSSxDQUFDQyxXQUFXLENBQUM7Z0JBQ2pCLElBQUksQ0FBQ0EsV0FBVyxDQUFDO1lBQ25COzs7V0FObUJGO0VBQXVCRyxlQUFRO0FBUWxELGdCQVJtQkgsZ0JBUVpJLHFCQUFvQjtJQUN6QkMsV0FBVztJQUNYQyxXQUFXO0lBQ1hDLG1CQUFtQjtRQUFFO0tBQWtCO0FBQ3pDIn0=
160
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL3ZpZXcvZXhwbG9yZXIvc2Vjb25kLmpzIiwiPDxqc3gtY29uZmlnLXByYWdtYS5qcz4+Il0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgeyBFeHBsb3JlciB9IGZyb20gXCIuLi8uLi8uLi9pbmRleFwiOyAgLy8vXG5cbmV4cG9ydCBkZWZhdWx0IGNsYXNzIFNlY29uZEV4cGxvcmVyIGV4dGVuZHMgRXhwbG9yZXIge1xuICBpbml0aWFsaXNlKCkge1xuICAgIHN1cGVyLmluaXRpYWxpc2UoKTtcblxuICAgIHRoaXMuYWRkRmlsZVBhdGgoXCJkaXJlY3RvcnkyL2ZpbGU0LnR4dFwiKTtcbiAgICB0aGlzLmFkZEZpbGVQYXRoKFwiZGlyZWN0b3J5Mi9maWxlNS50eHRcIik7XG4gIH1cblxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcImZpcnN0XCIsXG4gICAgcmVmZXJlbmNlOiBcInNlY29uZC1leHBsb3JlclwiLFxuICAgIGlnbm9yZWRSZWZlcmVuY2VzOiBbIFwiZmlyc3QtZXhwbG9yZXJcIiBdXG4gIH07XG59XG4iLCJSZWFjdC5jcmVhdGVFbGVtZW50Il0sIm5hbWVzIjpbIlNlY29uZEV4cGxvcmVyIiwiaW5pdGlhbGlzZSIsImFkZEZpbGVQYXRoIiwiRXhwbG9yZXIiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsInJlZmVyZW5jZSIsImlnbm9yZWRSZWZlcmVuY2VzIl0sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7OztlQUlxQkE7OztxQkFGSTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFVixJQUFBLEFBQU1BLCtCQUFOO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztrQkFBQUE7O1lBQ25CQyxLQUFBQTttQkFBQUEsU0FBQUEsYUFBYTtnQkFDWCx1QkFGaUJELDJCQUVYQyxjQUFOLElBQUs7Z0JBRUwsSUFBSSxDQUFDQyxXQUFXLENBQUM7Z0JBQ2pCLElBQUksQ0FBQ0EsV0FBVyxDQUFDO1lBQ25COzs7V0FObUJGO0VBQXVCRyxlQUFRO0FBUWxELGlCQVJtQkgsZ0JBUVpJLHFCQUFvQjtJQUN6QkMsV0FBVztJQUNYQyxXQUFXO0lBQ1hDLG1CQUFtQjtRQUFFO0tBQWtCO0FBQ3pDIn0=
@@ -9,18 +9,18 @@ Object.defineProperty(exports, "default", {
9
9
  }
10
10
  });
11
11
  var _index = require("../../index");
12
- function _assertThisInitialized(self) {
12
+ function _assert_this_initialized(self) {
13
13
  if (self === void 0) {
14
14
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
15
15
  }
16
16
  return self;
17
17
  }
18
- function _classCallCheck(instance, Constructor) {
18
+ function _class_call_check(instance, Constructor) {
19
19
  if (!(instance instanceof Constructor)) {
20
20
  throw new TypeError("Cannot call a class as a function");
21
21
  }
22
22
  }
23
- function _defineProperty(obj, key, value) {
23
+ function _define_property(obj, key, value) {
24
24
  if (key in obj) {
25
25
  Object.defineProperty(obj, key, {
26
26
  value: value,
@@ -33,11 +33,11 @@ function _defineProperty(obj, key, value) {
33
33
  }
34
34
  return obj;
35
35
  }
36
- function _getPrototypeOf(o) {
37
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
36
+ function _get_prototype_of(o) {
37
+ _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
38
38
  return o.__proto__ || Object.getPrototypeOf(o);
39
39
  };
40
- return _getPrototypeOf(o);
40
+ return _get_prototype_of(o);
41
41
  }
42
42
  function _inherits(subClass, superClass) {
43
43
  if (typeof superClass !== "function" && superClass !== null) {
@@ -50,26 +50,26 @@ function _inherits(subClass, superClass) {
50
50
  configurable: true
51
51
  }
52
52
  });
53
- if (superClass) _setPrototypeOf(subClass, superClass);
53
+ if (superClass) _set_prototype_of(subClass, superClass);
54
54
  }
55
- function _possibleConstructorReturn(self, call) {
56
- if (call && (_typeof(call) === "object" || typeof call === "function")) {
55
+ function _possible_constructor_return(self, call) {
56
+ if (call && (_type_of(call) === "object" || typeof call === "function")) {
57
57
  return call;
58
58
  }
59
- return _assertThisInitialized(self);
59
+ return _assert_this_initialized(self);
60
60
  }
61
- function _setPrototypeOf(o, p) {
62
- _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
61
+ function _set_prototype_of(o, p) {
62
+ _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
63
63
  o.__proto__ = p;
64
64
  return o;
65
65
  };
66
- return _setPrototypeOf(o, p);
66
+ return _set_prototype_of(o, p);
67
67
  }
68
- var _typeof = function(obj) {
68
+ function _type_of(obj) {
69
69
  "@swc/helpers - typeof";
70
70
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
71
- };
72
- function _isNativeReflectConstruct() {
71
+ }
72
+ function _is_native_reflect_construct() {
73
73
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
74
74
  if (Reflect.construct.sham) return false;
75
75
  if (typeof Proxy === "function") return true;
@@ -80,32 +80,32 @@ function _isNativeReflectConstruct() {
80
80
  return false;
81
81
  }
82
82
  }
83
- function _createSuper(Derived) {
84
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
83
+ function _create_super(Derived) {
84
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
85
85
  return function _createSuperInternal() {
86
- var Super = _getPrototypeOf(Derived), result;
86
+ var Super = _get_prototype_of(Derived), result;
87
87
  if (hasNativeReflectConstruct) {
88
- var NewTarget = _getPrototypeOf(this).constructor;
88
+ var NewTarget = _get_prototype_of(this).constructor;
89
89
  result = Reflect.construct(Super, arguments, NewTarget);
90
90
  } else {
91
91
  result = Super.apply(this, arguments);
92
92
  }
93
- return _possibleConstructorReturn(this, result);
93
+ return _possible_constructor_return(this, result);
94
94
  };
95
95
  }
96
96
  var _class = /*#__PURE__*/ function(RubbishBin) {
97
97
  _inherits(_class, RubbishBin);
98
- var _super = _createSuper(_class);
98
+ var _super = _create_super(_class);
99
99
  function _class() {
100
- _classCallCheck(this, _class);
100
+ _class_call_check(this, _class);
101
101
  return _super.apply(this, arguments);
102
102
  }
103
103
  return _class;
104
104
  }(_index.RubbishBin);
105
- _defineProperty(_class, "defaultProperties", {
105
+ _define_property(_class, "defaultProperties", {
106
106
  ignoredReferences: [
107
107
  "second-explorer"
108
108
  ]
109
109
  });
110
110
 
111
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL3ZpZXcvcnViYmlzaEJpbi5qcyIsIjw8anN4LWNvbmZpZy1wcmFnbWEuanM+PiJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHsgUnViYmlzaEJpbiB9IGZyb20gXCIuLi8uLi9pbmRleFwiOyAvLy9cblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgZXh0ZW5kcyBSdWJiaXNoQmluIHtcbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGlnbm9yZWRSZWZlcmVuY2VzOiBbIFwic2Vjb25kLWV4cGxvcmVyXCIgXVxuICB9O1xufVxuIiwiUmVhY3QuY3JlYXRlRWxlbWVudCJdLCJuYW1lcyI6WyJSdWJiaXNoQmluIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJpZ25vcmVkUmVmZXJlbmNlcyJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7cUJBRTJCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRVosSUFBQSx1QkFBQTs7Ozs7Ozs7RUFBY0EsaUJBQVU7QUFDckMsd0JBQU9DLHFCQUFvQjtJQUN6QkMsbUJBQW1CO1FBQUU7S0FBbUI7QUFDMUMifQ==
111
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL3ZpZXcvcnViYmlzaEJpbi5qcyIsIjw8anN4LWNvbmZpZy1wcmFnbWEuanM+PiJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHsgUnViYmlzaEJpbiB9IGZyb20gXCIuLi8uLi9pbmRleFwiOyAvLy9cblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgZXh0ZW5kcyBSdWJiaXNoQmluIHtcbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGlnbm9yZWRSZWZlcmVuY2VzOiBbIFwic2Vjb25kLWV4cGxvcmVyXCIgXVxuICB9O1xufVxuIiwiUmVhY3QuY3JlYXRlRWxlbWVudCJdLCJuYW1lcyI6WyJSdWJiaXNoQmluIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJpZ25vcmVkUmVmZXJlbmNlcyJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7cUJBRTJCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRVosSUFBQSx1QkFBQTs7Ozs7Ozs7RUFBY0EsaUJBQVU7QUFDckMseUJBQU9DLHFCQUFvQjtJQUN6QkMsbUJBQW1CO1FBQUU7S0FBbUI7QUFDMUMifQ==