mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-01 00:53:08 +02:00
5 lines
163 B
TypeScript
5 lines
163 B
TypeScript
|
export function checkHttps(url: string) {
|
||
|
return url.startsWith('https://') ||
|
||
|
(url.startsWith('http://') && process.env.NODE_ENV !== 'production');
|
||
|
}
|