/** * 是否是https的url * @category RegExp */ export const isHttps = value => /^https:\/\/*/.test(value);