From 127e37f245ffa34085bd085649097c965b2502c3 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Wed, 3 Oct 2018 22:27:46 +0300 Subject: [PATCH] Update isDuplexStream.md --- snippets/isDuplexStream.md | 1 - 1 file changed, 1 deletion(-) diff --git a/snippets/isDuplexStream.md b/snippets/isDuplexStream.md index 24e5b05a8..dce0ab19f 100644 --- a/snippets/isDuplexStream.md +++ b/snippets/isDuplexStream.md @@ -10,7 +10,6 @@ const isDuplexStream = val => val !== null && typeof val === 'object' && typeof val.pipe === 'function' && - typeof val.pipe === 'function' && typeof val._read === 'function' && typeof val._readableState === 'object' && typeof val._write === 'function' &&