mol_plot_all 1.2.1481 → 1.2.1482

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.
package/web.js CHANGED
@@ -403,7 +403,7 @@ var $;
403
403
  if (typeof val === 'function') {
404
404
  return $mol_dev_format_native(val);
405
405
  }
406
- if (Error.isError(val)) {
406
+ if (val instanceof Error) {
407
407
  return $mol_dev_format_span({}, $mol_dev_format_native(val), ' ', $mol_dev_format_button('throw', () => $mol_fail_hidden(val)));
408
408
  }
409
409
  if (val instanceof Promise) {
@@ -1233,7 +1233,7 @@ var $;
1233
1233
  var $;
1234
1234
  (function ($) {
1235
1235
  function $mol_log3_area_lazy(event) {
1236
- const self = this;
1236
+ const self = this.$;
1237
1237
  const stack = self.$mol_log3_stack;
1238
1238
  const deep = stack.length;
1239
1239
  let logged = false;