Файловый менеджер - Редактировать - /home/ephorei/www/wp-content/plugins/astra-sites/inc/lib/onboarding/assets/src/utils/prepend-https.js
Назад
/** * Internal dependencies */ import { isEmail } from '@wordpress/url'; const USABLE_HREF_REGEXP = /^(?:[a-z]+:|#|\?|\.|\/)/i; /** * Prepends "https://" to a url, if it looks like something that is meant to be a TLD. * * @param {string} url The URL to test. * * @example * ```js * const actualURL = prependHTTP( 'wordpress.org' ); // https://wordpress.org * ``` * * @return {string} The updated URL. */ export const prependHTTPS = ( url ) => { if ( ! url ) { return url; } url = url.trim(); if ( ! USABLE_HREF_REGEXP.test( url ) && ! isEmail( url ) ) { return 'https://' + url + '/'; } return url; };
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка