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 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
@@ -64,6 +64,7 @@ declare class Taraskevizer {
64
64
  general: TaraskOptions;
65
65
  html: HtmlOptions;
66
66
  nonHtml: NonHtmlOptions;
67
+ taraskevize(this: Taraskevizer, text: string): string;
67
68
  }>);
68
69
  convert(text: string): string;
69
70
  convertToHtml(text: string): string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taraskevizer",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "author": "GooseOb",
5
5
  "repository": {
6
6
  "type": "git",