Onlife/node_modules/axios/lib/helpers/parseProtocol.js

7 lines
152 B
JavaScript
Raw Normal View History

2025-04-19 15:38:48 +08:00
'use strict';
module.exports = function parseProtocol(url) {
var match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
return match && match[1] || '';
};