blob: 0b13ccabddce9a0968ea0f5c91339c1ecefc7255 (
plain)
1
2
3
4
5
6
7
8
9
|
/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export function checkHttps(url: string): boolean {
return url.startsWith('https://') ||
(url.startsWith('http://') && process.env.NODE_ENV !== 'production');
}
|