mirror of https://github.com/rancher/dashboard.git
10 lines
374 B
JavaScript
10 lines
374 B
JavaScript
import isUrl from 'is-url';
|
|
|
|
export const isServerUrl = (value) => value === 'server-url';
|
|
|
|
export const isHttps = (value) => value.toLowerCase().startsWith('https://');
|
|
|
|
export const isLocalhost = (value) => (/^(?:https?:\/\/)?(?:localhost|127\.0\.0\.1)/i).test(value);
|
|
|
|
export const hasTrailingForwardSlash = (value) => isUrl(value) && value?.toLowerCase().endsWith('/');
|