From 935c936e1f2152557270550e13403fbddb1adc0f Mon Sep 17 00:00:00 2001 From: Emiliano Heyns Date: Tue, 16 Apr 2024 01:13:11 +0200 Subject: [PATCH] delay too large --- verbatim.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verbatim.ts b/verbatim.ts index b45af70e3..36be8ee91 100644 --- a/verbatim.ts +++ b/verbatim.ts @@ -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) {