Skip to content

Commit

Permalink
fix: remove side effect on options
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed Nov 4, 2024
1 parent 1f463b3 commit 2afdfc8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/iterator.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export async function* iterator(readStream, options = {}) {

const lineStream = readStream.pipeThrough(createLineStream());
const currentLines = [];
if (options.dynamicTyping === undefined) options.dynamicTyping = true;

for await (let line of lineStream) {
if (line.startsWith('$$$$')) {
Expand Down

0 comments on commit 2afdfc8

Please sign in to comment.