taraskevizer 6.0.1 → 6.0.2
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/dist/index.cjs +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2193,6 +2193,8 @@ var Taraskevizer = class {
|
|
|
2193
2193
|
Object.assign(this.general, options.general);
|
|
2194
2194
|
Object.assign(this.html, options.html);
|
|
2195
2195
|
Object.assign(this.nonHtml, options.nonHtml);
|
|
2196
|
+
if (options.taraskevize)
|
|
2197
|
+
this.taraskevize = options.taraskevize;
|
|
2196
2198
|
}
|
|
2197
2199
|
convert(text) {
|
|
2198
2200
|
const wrapInColorOf = wrappers.ansiColors;
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -2162,6 +2162,8 @@ var Taraskevizer = class {
|
|
|
2162
2162
|
Object.assign(this.general, options.general);
|
|
2163
2163
|
Object.assign(this.html, options.html);
|
|
2164
2164
|
Object.assign(this.nonHtml, options.nonHtml);
|
|
2165
|
+
if (options.taraskevize)
|
|
2166
|
+
this.taraskevize = options.taraskevize;
|
|
2165
2167
|
}
|
|
2166
2168
|
convert(text) {
|
|
2167
2169
|
const wrapInColorOf = wrappers.ansiColors;
|