智慧水务管理系统 - 精河县供水工程综合管理平台

parseProtocol.js 153B

123456
  1. 'use strict';
  2. export default function parseProtocol(url) {
  3. const match = /^([-+\w]{1,25}):(?:\/\/)?/.exec(url);
  4. return (match && match[1]) || '';
  5. }