UNPKG

@10yun/open-sdk

Version:

开放平台接入sdk

10 lines (9 loc) 247 B
/** * 使用正则表达式进行过滤 * 过滤除了 https:// 和 http:// 以外的 // 和 /// */ export function parseDomainUrl(str) { str = str.replace(/\/(undefined\/)+/g, '/'); str = str.replace(/([^:]\/)\/+/g, '$1'); return str; }