@gesslar/toolkit 2.2.0 → 2.3.0
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/package.json +1 -1
- package/src/browser/lib/Sass.js +32 -9
- package/src/browser/lib/Tantrum.js +11 -7
- package/src/browser/lib/Util.js +4 -4
- package/src/lib/Sass.js +29 -8
- package/src/lib/Tantrum.js +11 -7
- package/src/lib/Term.js +16 -0
- package/src/types/browser/lib/Sass.d.ts +2 -1
- package/src/types/browser/lib/Sass.d.ts.map +1 -1
- package/src/types/browser/lib/Tantrum.d.ts +2 -1
- package/src/types/browser/lib/Tantrum.d.ts.map +1 -1
- package/src/types/browser/lib/Util.d.ts +2 -2
- package/src/types/browser/lib/Util.d.ts.map +1 -1
- package/src/types/lib/Sass.d.ts.map +1 -1
- package/src/types/lib/Tantrum.d.ts.map +1 -1
- package/src/types/lib/Term.d.ts +10 -0
- package/src/types/lib/Term.d.ts.map +1 -1
package/package.json
CHANGED
package/src/browser/lib/Sass.js
CHANGED
|
@@ -70,9 +70,13 @@ export default class Sass extends Error {
|
|
|
70
70
|
* Optionally includes detailed stack trace information.
|
|
71
71
|
*
|
|
72
72
|
* @param {boolean} [nerdMode] - Whether to include detailed stack trace
|
|
73
|
+
* @param {boolean} [isNested] - Whether this is a nested error report
|
|
73
74
|
*/
|
|
74
|
-
report(nerdMode=false) {
|
|
75
|
-
|
|
75
|
+
report(nerdMode=false, isNested=false) {
|
|
76
|
+
if(isNested)
|
|
77
|
+
console.error()
|
|
78
|
+
|
|
79
|
+
console.group(
|
|
76
80
|
`[error] Something Went Wrong\n` +
|
|
77
81
|
this.trace.join("\n")
|
|
78
82
|
)
|
|
@@ -80,16 +84,33 @@ export default class Sass extends Error {
|
|
|
80
84
|
if(nerdMode) {
|
|
81
85
|
console.error(
|
|
82
86
|
"\n" +
|
|
83
|
-
`[error] Nerd
|
|
87
|
+
`[error] Nerd Victuals\n` +
|
|
84
88
|
this.#fullBodyMassage(this.stack)
|
|
85
89
|
)
|
|
90
|
+
}
|
|
86
91
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
+
if(this.cause) {
|
|
93
|
+
if(typeof this.cause.report === "function") {
|
|
94
|
+
if(nerdMode) {
|
|
95
|
+
console.error(
|
|
96
|
+
"\n" +
|
|
97
|
+
`[error] Caused By`
|
|
98
|
+
)
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
this.cause.report(nerdMode, true)
|
|
102
|
+
} else if(nerdMode && this.cause.stack) {
|
|
103
|
+
console.error()
|
|
104
|
+
console.group()
|
|
105
|
+
console.error(
|
|
106
|
+
`[error] Rethrown From\n` +
|
|
107
|
+
this.#fullBodyMassage(this.cause.stack)
|
|
108
|
+
)
|
|
109
|
+
console.groupEnd()
|
|
110
|
+
}
|
|
92
111
|
}
|
|
112
|
+
|
|
113
|
+
console.groupEnd()
|
|
93
114
|
}
|
|
94
115
|
|
|
95
116
|
/**
|
|
@@ -138,7 +159,9 @@ export default class Sass extends Error {
|
|
|
138
159
|
throw this.new("Sass.from must take an Error object.")
|
|
139
160
|
|
|
140
161
|
const oldMessage = error.message
|
|
141
|
-
const newError = new this(
|
|
162
|
+
const newError = new this(
|
|
163
|
+
oldMessage, {cause: error}
|
|
164
|
+
).addTrace(message)
|
|
142
165
|
|
|
143
166
|
return newError
|
|
144
167
|
}
|
|
@@ -82,21 +82,25 @@ export default class Tantrum extends AggregateError {
|
|
|
82
82
|
* Reports all aggregated errors to the console with formatted output.
|
|
83
83
|
*
|
|
84
84
|
* @param {boolean} [nerdMode] - Whether to include detailed stack traces
|
|
85
|
+
* @param {boolean} [isNested] - Whether this is a nested error report
|
|
85
86
|
*/
|
|
86
|
-
report(nerdMode = false) {
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
report(nerdMode = false, isNested = false) {
|
|
88
|
+
if(isNested)
|
|
89
|
+
console.error()
|
|
90
|
+
|
|
91
|
+
console.group(
|
|
92
|
+
`[Tantrum Incoming] x${this.errors.length}\n` +
|
|
89
93
|
this.message
|
|
90
94
|
)
|
|
91
95
|
|
|
92
|
-
if(this.trace)
|
|
96
|
+
if(this.trace.length > 0)
|
|
93
97
|
console.error(this.trace.join("\n"))
|
|
94
98
|
|
|
95
|
-
console.error()
|
|
96
|
-
|
|
97
99
|
this.errors.forEach(error => {
|
|
98
|
-
error.report(nerdMode)
|
|
100
|
+
error.report(nerdMode, true)
|
|
99
101
|
})
|
|
102
|
+
|
|
103
|
+
console.groupEnd()
|
|
100
104
|
}
|
|
101
105
|
|
|
102
106
|
/**
|
package/src/browser/lib/Util.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import Tantrum from "./Tantrum.js"
|
|
2
2
|
import Valid from "./Valid.js"
|
|
3
3
|
import Collection from "./Collection.js"
|
|
4
4
|
|
|
@@ -137,10 +137,10 @@ export default class Util {
|
|
|
137
137
|
*
|
|
138
138
|
* @param {string} [_message] - Optional error message. Defaults to "GIGO"
|
|
139
139
|
* @param {Array<object>} rejected - Array of rejected results.
|
|
140
|
-
* @throws {Error} Throws a
|
|
140
|
+
* @throws {Error} Throws a Tantrum error with rejection reasons.
|
|
141
141
|
*/
|
|
142
|
-
static throwRejected(
|
|
143
|
-
throw
|
|
142
|
+
static throwRejected(message="GIGO", rejected) {
|
|
143
|
+
throw Tantrum.new(message, this.rejectedReasons(rejected))
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
/**
|
package/src/lib/Sass.js
CHANGED
|
@@ -24,9 +24,13 @@ export default class Sass extends BrowserSass {
|
|
|
24
24
|
* Optionally includes detailed stack trace information.
|
|
25
25
|
*
|
|
26
26
|
* @param {boolean} [nerdMode] - Whether to include detailed stack trace
|
|
27
|
+
* @param {boolean} [isNested] - Whether this is a nested error report
|
|
27
28
|
*/
|
|
28
|
-
report(nerdMode=false) {
|
|
29
|
-
|
|
29
|
+
report(nerdMode=false, isNested=false) {
|
|
30
|
+
if(isNested)
|
|
31
|
+
Term.error()
|
|
32
|
+
|
|
33
|
+
Term.group(
|
|
30
34
|
`${Term.terminalBracket(["error", "Something Went Wrong"])}\n` +
|
|
31
35
|
this.trace.join("\n")
|
|
32
36
|
)
|
|
@@ -34,16 +38,33 @@ export default class Sass extends BrowserSass {
|
|
|
34
38
|
if(nerdMode) {
|
|
35
39
|
Term.error(
|
|
36
40
|
"\n" +
|
|
37
|
-
`${Term.terminalBracket(["error", "Nerd
|
|
41
|
+
`${Term.terminalBracket(["error", "Nerd Victuals"])}\n` +
|
|
38
42
|
this.#fullBodyMassage(this.stack)
|
|
39
43
|
)
|
|
44
|
+
}
|
|
40
45
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
+
if(this.cause) {
|
|
47
|
+
if(typeof this.cause.report === "function") {
|
|
48
|
+
if(nerdMode) {
|
|
49
|
+
Term.error(
|
|
50
|
+
"\n" +
|
|
51
|
+
`${Term.terminalBracket(["error", "Caused By"])}`
|
|
52
|
+
)
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
this.cause.report(nerdMode, true)
|
|
56
|
+
} else if(nerdMode && this.cause.stack) {
|
|
57
|
+
Term.error()
|
|
58
|
+
Term.group()
|
|
59
|
+
Term.error(
|
|
60
|
+
`${Term.terminalBracket(["error", "Rethrown From"])}\n` +
|
|
61
|
+
this.#fullBodyMassage(this.cause.stack)
|
|
62
|
+
)
|
|
63
|
+
Term.groupEnd()
|
|
64
|
+
}
|
|
46
65
|
}
|
|
66
|
+
|
|
67
|
+
Term.groupEnd()
|
|
47
68
|
}
|
|
48
69
|
|
|
49
70
|
/**
|
package/src/lib/Tantrum.js
CHANGED
|
@@ -26,20 +26,24 @@ export default class Tantrum extends BrowserTantrum {
|
|
|
26
26
|
* Reports all aggregated errors to the terminal with formatted output.
|
|
27
27
|
*
|
|
28
28
|
* @param {boolean} [nerdMode] - Whether to include detailed stack traces
|
|
29
|
+
* @param {boolean} [isNested] - Whether this is a nested error report
|
|
29
30
|
*/
|
|
30
|
-
report(nerdMode = false) {
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
report(nerdMode = false, isNested = false) {
|
|
32
|
+
if(isNested)
|
|
33
|
+
Term.error()
|
|
34
|
+
|
|
35
|
+
Term.group(
|
|
36
|
+
`${Term.terminalBracket(["error", "Tantrum Incoming"])} x${this.errors.length}\n` +
|
|
33
37
|
this.message
|
|
34
38
|
)
|
|
35
39
|
|
|
36
|
-
if(this.trace)
|
|
40
|
+
if(this.trace.length > 0)
|
|
37
41
|
Term.error(this.trace.join("\n"))
|
|
38
42
|
|
|
39
|
-
Term.error()
|
|
40
|
-
|
|
41
43
|
this.errors.forEach(error => {
|
|
42
|
-
error.report(nerdMode)
|
|
44
|
+
error.report(nerdMode, true)
|
|
43
45
|
})
|
|
46
|
+
|
|
47
|
+
Term.groupEnd()
|
|
44
48
|
}
|
|
45
49
|
}
|
package/src/lib/Term.js
CHANGED
|
@@ -49,6 +49,22 @@ export default class Term {
|
|
|
49
49
|
console.debug(...arg)
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
/**
|
|
53
|
+
* Start a console group for indented output.
|
|
54
|
+
*
|
|
55
|
+
* @param {...unknown} [arg] - Optional group label.
|
|
56
|
+
*/
|
|
57
|
+
static group(...arg) {
|
|
58
|
+
console.group(...arg)
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* End the current console group.
|
|
63
|
+
*/
|
|
64
|
+
static groupEnd() {
|
|
65
|
+
console.groupEnd()
|
|
66
|
+
}
|
|
67
|
+
|
|
52
68
|
/**
|
|
53
69
|
* Emit a status line to the terminal.
|
|
54
70
|
*
|
|
@@ -54,8 +54,9 @@ export default class Sass extends Error {
|
|
|
54
54
|
* Optionally includes detailed stack trace information.
|
|
55
55
|
*
|
|
56
56
|
* @param {boolean} [nerdMode] - Whether to include detailed stack trace
|
|
57
|
+
* @param {boolean} [isNested] - Whether this is a nested error report
|
|
57
58
|
*/
|
|
58
|
-
report(nerdMode?: boolean): void;
|
|
59
|
+
report(nerdMode?: boolean, isNested?: boolean): void;
|
|
59
60
|
#private;
|
|
60
61
|
}
|
|
61
62
|
import Tantrum from "./Tantrum.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Sass.d.ts","sourceRoot":"","sources":["../../../browser/lib/Sass.js"],"names":[],"mappings":"AAeA;;;GAGG;AACH;
|
|
1
|
+
{"version":3,"file":"Sass.d.ts","sourceRoot":"","sources":["../../../browser/lib/Sass.js"],"names":[],"mappings":"AAeA;;;GAGG;AACH;IAgIE;;;;;;;;OAQG;IACH,mBALW,KAAK,WACL,MAAM,GACJ,IAAI,CAahB;IAED;;;;;;;;OAQG;IACH,sBAJW,MAAM,UACN,KAAK,GAAC,IAAI,GAAC,OAAO,GAChB,IAAI,CAchB;IAvKD;;;;;OAKG;IACH,qBAHW,MAAM,WACH,OAAO,EAAA,EAMpB;IAWD;;;;OAIG;IACH,mBAFW,MAAM,EAIhB;IAhBD;;;;OAIG;IACH,aAFa,KAAK,CAAC,MAAM,CAAC,CAIzB;IAWD;;;;;OAKG;IACH,kBAHW,MAAM,GACJ,IAAI,CAShB;IAED;;;;;;OAMG;IACH,kBAHW,OAAO,aACP,OAAO,QAyCjB;;CA6EF;oBAjLmB,cAAc"}
|
|
@@ -43,8 +43,9 @@ export default class Tantrum extends AggregateError {
|
|
|
43
43
|
* Reports all aggregated errors to the console with formatted output.
|
|
44
44
|
*
|
|
45
45
|
* @param {boolean} [nerdMode] - Whether to include detailed stack traces
|
|
46
|
+
* @param {boolean} [isNested] - Whether this is a nested error report
|
|
46
47
|
*/
|
|
47
|
-
report(nerdMode?: boolean): void;
|
|
48
|
+
report(nerdMode?: boolean, isNested?: boolean): void;
|
|
48
49
|
#private;
|
|
49
50
|
}
|
|
50
51
|
import Sass from "./Sass.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tantrum.d.ts","sourceRoot":"","sources":["../../../browser/lib/Tantrum.js"],"names":[],"mappings":"AAaA;;;GAGG;AACH;
|
|
1
|
+
{"version":3,"file":"Tantrum.d.ts","sourceRoot":"","sources":["../../../browser/lib/Tantrum.js"],"names":[],"mappings":"AAaA;;;GAGG;AACH;IAwFE;;;;;;OAMG;IACH,sBAJW,MAAM,WACN,KAAK,CAAC,KAAK,GAAC,IAAI,CAAC,GACf,OAAO,CAOnB;IAhGD;;;;;;OAMG;IACH,qBAJW,MAAM,WACN,KAAK,CAAC,KAAK,GAAC,IAAI,CAAC,SACjB,IAAI,EAkBd;IAED;;;;;;OAMG;IACH,kBAJW,MAAM,WACN,KAAK,GAAC,IAAI,GACR,IAAI,CAShB;IAWD;;;;OAIG;IACH,mBAFW,MAAM,EAIhB;IAhBD;;;;OAIG;IACH,aAFa,KAAK,CAAC,MAAM,CAAC,CAIzB;IAWD;;;;;OAKG;IACH,kBAHW,OAAO,aACP,OAAO,QAmBjB;;CAeF;iBA3GgB,WAAW"}
|
|
@@ -81,9 +81,9 @@ export default class Util {
|
|
|
81
81
|
*
|
|
82
82
|
* @param {string} [_message] - Optional error message. Defaults to "GIGO"
|
|
83
83
|
* @param {Array<object>} rejected - Array of rejected results.
|
|
84
|
-
* @throws {Error} Throws a
|
|
84
|
+
* @throws {Error} Throws a Tantrum error with rejection reasons.
|
|
85
85
|
*/
|
|
86
|
-
static throwRejected(
|
|
86
|
+
static throwRejected(message: string, rejected: Array<object>): void;
|
|
87
87
|
/**
|
|
88
88
|
* Filters and returns all fulfilled results from a settled promise array.
|
|
89
89
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Util.d.ts","sourceRoot":"","sources":["../../../browser/lib/Util.js"],"names":[],"mappings":"AAIA;;;GAGG;AACH;IACE;;;;;OAKG;IACH,wBAHW,MAAM,GACJ,MAAM,CAYlB;IAED;;;;;;OAMG;IACH,YAJa,CAAC,MACH,MAAM,OAAO,CAAC,CAAC,CAAC,GACd,OAAO,CAAC;QAAC,MAAM,EAAE,CAAC,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,CAAC,CAQ9C;IAED;;;;;;;OAOG;IACH,4BAJW,MAAM,GAAC,MAAM,UACb,MAAM,GACJ,MAAM,CAWlB;IAED;;;;;;;OAOG;IACH,6BAJW,MAAM,GAAC,MAAM,UACb,MAAM,GACJ,MAAM,CAalB;IAED;;;;;;OAMG;IACH,0BAHW,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,GACrB,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAInC;IAED;;;;;;OAMG;IACH,2BAHW,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,GACrB,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAIlC;IAED;;;;;OAKG;IACH,2BAHW,KAAK,CAAC,MAAM,CAAC,GACX,OAAO,CAInB;IAED;;;;;OAKG;IACH,kCAHW,KAAK,CAAC,MAAM,CAAC,GACX,KAAK,CAAC,MAAM,CAAC,CAIzB;IAED;;;;;OAKG;IACH,iCAHW,KAAK,CAAC,MAAM,CAAC,GACX,KAAK,CAAC,OAAO,CAAC,CAI1B;IAED;;;;;;OAMG;IACH,
|
|
1
|
+
{"version":3,"file":"Util.d.ts","sourceRoot":"","sources":["../../../browser/lib/Util.js"],"names":[],"mappings":"AAIA;;;GAGG;AACH;IACE;;;;;OAKG;IACH,wBAHW,MAAM,GACJ,MAAM,CAYlB;IAED;;;;;;OAMG;IACH,YAJa,CAAC,MACH,MAAM,OAAO,CAAC,CAAC,CAAC,GACd,OAAO,CAAC;QAAC,MAAM,EAAE,CAAC,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,CAAC,CAQ9C;IAED;;;;;;;OAOG;IACH,4BAJW,MAAM,GAAC,MAAM,UACb,MAAM,GACJ,MAAM,CAWlB;IAED;;;;;;;OAOG;IACH,6BAJW,MAAM,GAAC,MAAM,UACb,MAAM,GACJ,MAAM,CAalB;IAED;;;;;;OAMG;IACH,0BAHW,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,GACrB,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAInC;IAED;;;;;;OAMG;IACH,2BAHW,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,GACrB,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAIlC;IAED;;;;;OAKG;IACH,2BAHW,KAAK,CAAC,MAAM,CAAC,GACX,OAAO,CAInB;IAED;;;;;OAKG;IACH,kCAHW,KAAK,CAAC,MAAM,CAAC,GACX,KAAK,CAAC,MAAM,CAAC,CAIzB;IAED;;;;;OAKG;IACH,iCAHW,KAAK,CAAC,MAAM,CAAC,GACX,KAAK,CAAC,OAAO,CAAC,CAI1B;IAED;;;;;;OAMG;IACH,gDAHW,KAAK,CAAC,MAAM,CAAC,QAKvB;IAED;;;;;OAKG;IACH,mCAHW,KAAK,CAAC,MAAM,CAAC,GACX,KAAK,CAAC,MAAM,CAAC,CAIzB;IAED;;;;;OAKG;IACH,+BAHW,KAAK,CAAC,MAAM,CAAC,GACX,KAAK,CAAC,OAAO,CAAC,CAI1B;IAED;;;;;;OAMG;IACH,sBAHW,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,GACrB,OAAO,CAAC,OAAO,CAAC,CAI5B;IAED;;;;;;OAMG;IACH,8BAJW,MAAM,KACN,MAAM,GACJ,MAAM,CAsBlB;IAED;;;;;;;;OAQG;IACH,+BALW,MAAM,iBACN,KAAK,CAAC,MAAM,CAAC,cACb,MAAM,GACJ,MAAM,CAwBlB;IAED,mEAiBC;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Sass.d.ts","sourceRoot":"","sources":["../../lib/Sass.js"],"names":[],"mappings":"AAgBA;;;GAGG;AACH;;
|
|
1
|
+
{"version":3,"file":"Sass.d.ts","sourceRoot":"","sources":["../../lib/Sass.js"],"names":[],"mappings":"AAgBA;;;GAGG;AACH;;CAgFC;oCAvFiC,qBAAqB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tantrum.d.ts","sourceRoot":"","sources":["../../lib/Tantrum.js"],"names":[],"mappings":"AAeA;;;GAGG;AACH;IACE,0CAEC;
|
|
1
|
+
{"version":3,"file":"Tantrum.d.ts","sourceRoot":"","sources":["../../lib/Tantrum.js"],"names":[],"mappings":"AAeA;;;GAGG;AACH;IACE,0CAEC;CA0BF;0CArCuC,qBAAqB"}
|
package/src/types/lib/Term.d.ts
CHANGED
|
@@ -29,6 +29,16 @@ export default class Term {
|
|
|
29
29
|
* @param {...unknown} [arg] - Values to log.
|
|
30
30
|
*/
|
|
31
31
|
static debug(...arg?: unknown[]): void;
|
|
32
|
+
/**
|
|
33
|
+
* Start a console group for indented output.
|
|
34
|
+
*
|
|
35
|
+
* @param {...unknown} [arg] - Optional group label.
|
|
36
|
+
*/
|
|
37
|
+
static group(...arg?: unknown[]): void;
|
|
38
|
+
/**
|
|
39
|
+
* End the current console group.
|
|
40
|
+
*/
|
|
41
|
+
static groupEnd(): void;
|
|
32
42
|
/**
|
|
33
43
|
* Emit a status line to the terminal.
|
|
34
44
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Term.d.ts","sourceRoot":"","sources":["../../lib/Term.js"],"names":[],"mappings":"AAKA;IACE;;;;OAIG;IACH,oBAFc,OAAO,EAAA,QAIpB;IAED;;;;OAIG;IACH,qBAFc,OAAO,EAAA,QAIpB;IAED;;;;OAIG;IACH,qBAFc,OAAO,EAAA,QAIpB;IAED;;;;OAIG;IACH,sBAFc,OAAO,EAAA,QAIpB;IAED;;;;OAIG;IACH,sBAFc,OAAO,EAAA,QAIpB;IAED;;;;;;;;;;;;;;OAcG;IACH,oBALW,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,eAEjD;QAAyB,MAAM,EAAvB,OAAO;KACf,GAAU,IAAI,CAOhB;IAED;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,gCAHW,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,GAClE,IAAI,CA4BhB;IAED;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,gDAJW,KAAK,CAAC,MAAM,CAAC,GACX,MAAM,CASlB;IAED,sCAGC;IAED,2CAEC;IAED,8CAIC;CACF"}
|
|
1
|
+
{"version":3,"file":"Term.d.ts","sourceRoot":"","sources":["../../lib/Term.js"],"names":[],"mappings":"AAKA;IACE;;;;OAIG;IACH,oBAFc,OAAO,EAAA,QAIpB;IAED;;;;OAIG;IACH,qBAFc,OAAO,EAAA,QAIpB;IAED;;;;OAIG;IACH,qBAFc,OAAO,EAAA,QAIpB;IAED;;;;OAIG;IACH,sBAFc,OAAO,EAAA,QAIpB;IAED;;;;OAIG;IACH,sBAFc,OAAO,EAAA,QAIpB;IAED;;;;OAIG;IACH,sBAFc,OAAO,EAAA,QAIpB;IAED;;OAEG;IACH,wBAEC;IAED;;;;;;;;;;;;;;OAcG;IACH,oBALW,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,eAEjD;QAAyB,MAAM,EAAvB,OAAO;KACf,GAAU,IAAI,CAOhB;IAED;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,gCAHW,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,GAClE,IAAI,CA4BhB;IAED;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,gDAJW,KAAK,CAAC,MAAM,CAAC,GACX,MAAM,CASlB;IAED,sCAGC;IAED,2CAEC;IAED,8CAIC;CACF"}
|