mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-04-03 05:11:06 +03:00
9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* 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');
|
|
}
|