mol_plot_all 1.2.311 → 1.2.314

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.js CHANGED
@@ -644,14 +644,13 @@ var $;
644
644
  static blue = this.ansi(94, 39);
645
645
  static magenta = this.ansi(95, 39);
646
646
  static cyan = this.ansi(96, 39);
647
- static white = this.ansi(97, 39);
647
+ static Gray = (str) => this.inverse(this.gray(str));
648
648
  static Red = (str) => this.inverse(this.red(str));
649
649
  static Green = (str) => this.inverse(this.green(str));
650
650
  static Yellow = (str) => this.inverse(this.yellow(str));
651
651
  static Blue = (str) => this.inverse(this.blue(str));
652
652
  static Magenta = (str) => this.inverse(this.magenta(str));
653
653
  static Cyan = (str) => this.inverse(this.cyan(str));
654
- static White = (str) => this.inverse(this.white(str));
655
654
  static ansi(open, close) {
656
655
  if (typeof process === 'undefined')
657
656
  return String;