Skip to main content
Go to Latest
method Readable.prototype.isPaused
Re-export
import { Readable } from "https://deno.land/std@0.158.0/node/stream.ts";

The readable.isPaused() method returns the current operating state of theReadable. This is used primarily by the mechanism that underlies thereadable.pipe() method. In most typical cases, there will be no reason to use this method directly.

const readable = new stream.Readable();

readable.isPaused(); // === false
readable.pause();
readable.isPaused(); // === true
readable.resume();
readable.isPaused(); // === false

Returns

boolean