Azure / Azure/fetch-event-source
If there is a space in front of the data, it will be truncated
Open
- Dominant language
- TypeScript
- Stars
- 2.9k
- Forks
- 196
- PR merge metrics
- No merged PRs in 30d
Description
for examole:
data: exp
the space in front of exp will be subArray.
`const valueOffset = fieldLength + (line[fieldLength + 1] === 32 ? 1 : 1);`
it should be:
`const valueOffset = fieldLength + 1;`
Contributor guide
Assessment
This issue has not been assessed yet.