mol_plot_all 1.2.170 → 1.2.174

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/node.d.ts CHANGED
@@ -61,7 +61,6 @@ declare namespace $ {
61
61
  static [Symbol.toPrimitive](): any;
62
62
  static toString(): any;
63
63
  destructor(): void;
64
- [Symbol.toPrimitive](hint: string): any;
65
64
  toString(): any;
66
65
  toJSON(): any;
67
66
  }
package/node.esm.js CHANGED
@@ -188,9 +188,6 @@ var $;
188
188
  return this.name;
189
189
  }
190
190
  destructor() { }
191
- [Symbol.toPrimitive](hint) {
192
- return hint === 'number' ? this.valueOf() : this.toString();
193
- }
194
191
  toString() {
195
192
  return this[Symbol.toStringTag] || this.constructor.name + '()';
196
193
  }