mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-06 17:10:50 -06: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');
|
||
|
}
|