diff options
author | RaindropsSys <contact@minteck.org> | 2023-04-04 19:07:33 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-04-04 19:07:33 +0200 |
commit | b9aca19cccf9fd85a05d2ae32846b5b4f25a4dc1 (patch) | |
tree | 1ecb5f1c27f159bb175ecded73d4235fcfb4b5ae /includes/external/addressbook/node_modules/axios/lib/helpers/parseProtocol.js | |
parent | 704e1c22efe6056b0fc2f59b2766f47e1c8d71cc (diff) | |
download | pluralconnect-b9aca19cccf9fd85a05d2ae32846b5b4f25a4dc1.tar.gz pluralconnect-b9aca19cccf9fd85a05d2ae32846b5b4f25a4dc1.tar.bz2 pluralconnect-b9aca19cccf9fd85a05d2ae32846b5b4f25a4dc1.zip |
Added 147 files (automated)
Diffstat (limited to 'includes/external/addressbook/node_modules/axios/lib/helpers/parseProtocol.js')
-rw-r--r-- | includes/external/addressbook/node_modules/axios/lib/helpers/parseProtocol.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/includes/external/addressbook/node_modules/axios/lib/helpers/parseProtocol.js b/includes/external/addressbook/node_modules/axios/lib/helpers/parseProtocol.js new file mode 100644 index 0000000..586ec96 --- /dev/null +++ b/includes/external/addressbook/node_modules/axios/lib/helpers/parseProtocol.js @@ -0,0 +1,6 @@ +'use strict'; + +export default function parseProtocol(url) { + const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url); + return match && match[1] || ''; +} |