mol_wire_lib 1.0.268 → 1.0.271
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
|
@@ -2010,14 +2010,13 @@ var $;
|
|
|
2010
2010
|
static blue = this.ansi(94, 39);
|
|
2011
2011
|
static magenta = this.ansi(95, 39);
|
|
2012
2012
|
static cyan = this.ansi(96, 39);
|
|
2013
|
-
static
|
|
2013
|
+
static Gray = (str) => this.inverse(this.gray(str));
|
|
2014
2014
|
static Red = (str) => this.inverse(this.red(str));
|
|
2015
2015
|
static Green = (str) => this.inverse(this.green(str));
|
|
2016
2016
|
static Yellow = (str) => this.inverse(this.yellow(str));
|
|
2017
2017
|
static Blue = (str) => this.inverse(this.blue(str));
|
|
2018
2018
|
static Magenta = (str) => this.inverse(this.magenta(str));
|
|
2019
2019
|
static Cyan = (str) => this.inverse(this.cyan(str));
|
|
2020
|
-
static White = (str) => this.inverse(this.white(str));
|
|
2021
2020
|
static ansi(open, close) {
|
|
2022
2021
|
if (typeof process === 'undefined')
|
|
2023
2022
|
return String;
|