mol_jsx_lib 0.0.133 → 0.0.136

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
@@ -620,14 +620,13 @@ var $;
620
620
  static blue = this.ansi(94, 39);
621
621
  static magenta = this.ansi(95, 39);
622
622
  static cyan = this.ansi(96, 39);
623
- static white = this.ansi(97, 39);
623
+ static Gray = (str) => this.inverse(this.gray(str));
624
624
  static Red = (str) => this.inverse(this.red(str));
625
625
  static Green = (str) => this.inverse(this.green(str));
626
626
  static Yellow = (str) => this.inverse(this.yellow(str));
627
627
  static Blue = (str) => this.inverse(this.blue(str));
628
628
  static Magenta = (str) => this.inverse(this.magenta(str));
629
629
  static Cyan = (str) => this.inverse(this.cyan(str));
630
- static White = (str) => this.inverse(this.white(str));
631
630
  static ansi(open, close) {
632
631
  if (typeof process === 'undefined')
633
632
  return String;