We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 090d28a commit 07bf92cCopy full SHA for 07bf92c
src/main.ts
@@ -106,20 +106,25 @@ export class JSONParser<T = any> extends stream.Transform {
106
sliceStr(o: string) {
107
108
const z = o.indexOf('∆˚ø');
109
+
110
if (z >= 0) {
111
return o.slice(z);
112
}
113
- const ib = o.indexOf('["');
114
- const iz = o.indexOf('{"');
115
- if (ib > 0 && ib >= iz) {
116
- o = o.slice(ib);
117
- }
118
- else if (iz > 0 && iz >= ib) {
119
- o = o.slice(iz);
120
+ const i = [
+ o.indexOf('["'),
+ o.indexOf('{"'),
+ o.indexOf('[['),
+ o.indexOf('[[[')
+ ].reduce((a, b) => b > 0 && b < a ? b : a, 0);
121
// console.log('sliced json-stream string:', o);
122
- return o;
123
+ if (i <= 0) {
124
+ return o;
125
+ }
126
127
+ return o.slice(i);
128
129
130
handleJSON(o: string) {
0 commit comments