Rocket.Chat.ReactNative/app/lib/methods/helpers/isSsl.ts

3 lines
136 B
TypeScript
Raw Normal View History

// Use checkUseSsl: false only if server url starts with http://
export const isSsl = (url: string): boolean => !/http:\/\//.test(url);