From 16a9cc7113e0b768085c5a5bb3eb90fdea6330fa Mon Sep 17 00:00:00 2001 From: Mattias Buelens Date: Sat, 16 Dec 2023 00:40:33 +0100 Subject: [PATCH] fixup! code style --- lib/internal/webstreams/writablestream.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/internal/webstreams/writablestream.js b/lib/internal/webstreams/writablestream.js index 24263c3d4b42a6..954bc6c2cc93d8 100644 --- a/lib/internal/webstreams/writablestream.js +++ b/lib/internal/webstreams/writablestream.js @@ -520,8 +520,8 @@ function InternalWritableStream(start, write, close, abort, highWaterMark, size) close, abort, highWaterMark, - size - ) + size, + ); } ObjectSetPrototypeOf(InternalWritableStream.prototype, WritableStream.prototype);