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.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
|
@@ -612,14 +612,13 @@ var $;
|
|
|
612
612
|
static blue = this.ansi(94, 39);
|
|
613
613
|
static magenta = this.ansi(95, 39);
|
|
614
614
|
static cyan = this.ansi(96, 39);
|
|
615
|
-
static
|
|
615
|
+
static Gray = (str) => this.inverse(this.gray(str));
|
|
616
616
|
static Red = (str) => this.inverse(this.red(str));
|
|
617
617
|
static Green = (str) => this.inverse(this.green(str));
|
|
618
618
|
static Yellow = (str) => this.inverse(this.yellow(str));
|
|
619
619
|
static Blue = (str) => this.inverse(this.blue(str));
|
|
620
620
|
static Magenta = (str) => this.inverse(this.magenta(str));
|
|
621
621
|
static Cyan = (str) => this.inverse(this.cyan(str));
|
|
622
|
-
static White = (str) => this.inverse(this.white(str));
|
|
623
622
|
static ansi(open, close) {
|
|
624
623
|
if (typeof process === 'undefined')
|
|
625
624
|
return String;
|