mirror of
https://github.com/tenrok/axios.git
synced 2026-05-15 11:59:42 +03:00
b9e9fb4fa0
Added unit tests; Co-authored-by: Jay <jasonsaayman@gmail.com>
7 lines
152 B
JavaScript
7 lines
152 B
JavaScript
'use strict';
|
|
|
|
module.exports = function parseProtocol(url) {
|
|
var match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
|
|
return match && match[1] || '';
|
|
};
|