UNPKG

peertube-plugin-livechat

Version:

PeerTube plugin livechat: create chat rooms for your Peertube lives! Comes with many features: federation, moderation tools, chat bot, chat persistence, OBS integration, ...

16 lines (13 loc) 275 B
// SPDX-FileCopyrightText: 2024-2025 John Livingston <https://www.john-livingston.fr/> // // SPDX-License-Identifier: AGPL-3.0-only function inIframe (): boolean { try { return window.self !== window.top } catch (_err) { return true } } export { inIframe }