mol_plot_all 1.2.310 → 1.2.313
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 +1 -2
- package/node.deps.json +1 -1
- package/node.esm.js +1 -2
- package/node.esm.js.map +1 -1
- package/node.js +1 -2
- package/node.js.map +1 -1
- package/node.test.js +1 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.test.js
CHANGED
|
@@ -636,14 +636,13 @@ var $;
|
|
|
636
636
|
static blue = this.ansi(94, 39);
|
|
637
637
|
static magenta = this.ansi(95, 39);
|
|
638
638
|
static cyan = this.ansi(96, 39);
|
|
639
|
-
static
|
|
639
|
+
static Gray = (str) => this.inverse(this.gray(str));
|
|
640
640
|
static Red = (str) => this.inverse(this.red(str));
|
|
641
641
|
static Green = (str) => this.inverse(this.green(str));
|
|
642
642
|
static Yellow = (str) => this.inverse(this.yellow(str));
|
|
643
643
|
static Blue = (str) => this.inverse(this.blue(str));
|
|
644
644
|
static Magenta = (str) => this.inverse(this.magenta(str));
|
|
645
645
|
static Cyan = (str) => this.inverse(this.cyan(str));
|
|
646
|
-
static White = (str) => this.inverse(this.white(str));
|
|
647
646
|
static ansi(open, close) {
|
|
648
647
|
if (typeof process === 'undefined')
|
|
649
648
|
return String;
|