mol_wire_lib 1.0.267 → 1.0.270
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.js
CHANGED
|
@@ -2018,14 +2018,13 @@ var $;
|
|
|
2018
2018
|
static blue = this.ansi(94, 39);
|
|
2019
2019
|
static magenta = this.ansi(95, 39);
|
|
2020
2020
|
static cyan = this.ansi(96, 39);
|
|
2021
|
-
static
|
|
2021
|
+
static Gray = (str) => this.inverse(this.gray(str));
|
|
2022
2022
|
static Red = (str) => this.inverse(this.red(str));
|
|
2023
2023
|
static Green = (str) => this.inverse(this.green(str));
|
|
2024
2024
|
static Yellow = (str) => this.inverse(this.yellow(str));
|
|
2025
2025
|
static Blue = (str) => this.inverse(this.blue(str));
|
|
2026
2026
|
static Magenta = (str) => this.inverse(this.magenta(str));
|
|
2027
2027
|
static Cyan = (str) => this.inverse(this.cyan(str));
|
|
2028
|
-
static White = (str) => this.inverse(this.white(str));
|
|
2029
2028
|
static ansi(open, close) {
|
|
2030
2029
|
if (typeof process === 'undefined')
|
|
2031
2030
|
return String;
|