vis-dev-utils 4.0.37 → 4.0.39

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.
@@ -6,8 +6,8 @@
6
6
  *
7
7
  * Development utilities for the Vis family projects.
8
8
  *
9
- * @version 4.0.37
10
- * @date 2023-10-11T01:29:06.864Z
9
+ * @version 4.0.39
10
+ * @date 2023-10-11T21:41:42.001Z
11
11
  *
12
12
  * @copyright (c) 2011-2017 Almende B.V, http://almende.com
13
13
  * @copyright (c) 2017-2019 visjs contributors, https://github.com/visjs
@@ -2635,32 +2635,24 @@ var lib = {
2635
2635
  ...remove_1
2636
2636
  };
2637
2637
 
2638
- function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
2639
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context8, _context9; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context8 = ownKeys(Object(source), !0)).call(_context8, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context9 = ownKeys(Object(source))).call(_context9, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
2640
- var ProjectState = /*#__PURE__*/_createClass(
2641
- /**
2642
- * This will be resolved or rejected once all the tasks associated with this
2643
- * project finish.
2644
- */
2645
-
2646
- /**
2647
- * Run this to mark the project as successfully finished.
2648
- */
2649
-
2650
- /**
2651
- * Run this to mark the project as failed.
2652
- */
2653
-
2654
- /**
2655
- * Provide information about current state of the project.
2656
- */
2657
-
2658
- function ProjectState() {
2638
+ function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
2639
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context8, _context9; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context8 = ownKeys(Object(t), !0)).call(_context8, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context9 = ownKeys(Object(t))).call(_context9, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
2640
+ var ProjectState = /*#__PURE__*/_createClass(function ProjectState() {
2659
2641
  var _this = this;
2660
2642
  _classCallCheck(this, ProjectState);
2661
- _defineProperty(this, "promise", void 0);
2662
- _defineProperty(this, "resolve", void 0);
2663
- _defineProperty(this, "reject", void 0);
2643
+ /**
2644
+ * This will be resolved or rejected once all the tasks associated with this
2645
+ * project finish.
2646
+ */
2647
+ /**
2648
+ * Run this to mark the project as successfully finished.
2649
+ */
2650
+ /**
2651
+ * Run this to mark the project as failed.
2652
+ */
2653
+ /**
2654
+ * Provide information about current state of the project.
2655
+ */
2664
2656
  _defineProperty(this, "stage", "pending");
2665
2657
  this.promise = new _Promise(function (resolve, reject) {
2666
2658
  _this.resolve = resolve;