mirror of
https://gitee.com/la-vie/console-pro-free.git
synced 2025-01-29 22:31:41 +00:00
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
'use strict';
|
|
|
|
export default function parseProtocol(url) {
|
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
|
|
return match && match[1] || '';
|
|
}
|