-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: avoid unintended metadata parsing (#44)
- Loading branch information
Showing
3 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
export const extractJsonFromEnd = (chunk: string) => { | ||
const chunkTrimmed = chunk.trim(); | ||
|
||
const jsonObjectRegex = /({[^]*})\s*$/; | ||
const match = chunkTrimmed.match(jsonObjectRegex); | ||
|
||
if (!match) { | ||
return null; | ||
} | ||
|
||
const jsonStr = match[1]; | ||
try { | ||
const parsedData = JSON.parse(jsonStr); | ||
if (typeof parsedData === 'object' && parsedData !== null && !Array.isArray(parsedData)) { | ||
return parsedData; | ||
} | ||
} catch {} | ||
|
||
return null; | ||
}; |