Skip to content

Commit

Permalink
delay too large
Browse files Browse the repository at this point in the history
  • Loading branch information
retorquere committed Apr 15, 2024
1 parent c1ab5c8 commit 935c936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verbatim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class Library {
}

// eslint-disable-next-line no-magic-numbers
this.delay = typeof options.delay === 'number' ? Math.max(0, options.delay) : 10
this.delay = typeof options.delay === 'number' ? Math.max(0, options.delay) : 0

let pos = input.indexOf('\n')
while (pos !== -1) {
Expand Down

0 comments on commit 935c936

Please sign in to comment.