1/*
2 * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9#include <LibWeb/Forward.h>
10
11namespace Web::Streams {
12
13bool is_readable_stream_locked(ReadableStream const&);
14
15}