@haiilo/catalyst 6.0.2 → 6.1.0

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.
@@ -910,7 +910,12 @@ function __asyncValues(o) {
910
910
  return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
911
911
  function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
912
912
  function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
913
- }
913
+ }
914
+
915
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
916
+ var e = new Error(message);
917
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
918
+ };
914
919
 
915
920
  const isArrayLike = ((x) => x && typeof x.length === 'number' && typeof x !== 'function');
916
921