Files
Desktop/ts/util/openLinkInWebBrowser.dom.ts
T
2026-03-30 11:54:59 -07:00

12 lines
276 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { isValidLink } from '../types/LinkPreview.std.ts';
export function openLinkInWebBrowser(url: string): void {
if (!isValidLink(url)) {
return;
}
window.location.href = url;
}