![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/node_modules/webpack-dev-server/client/utils/ |
'use strict'; var url = require('url'); var getCurrentScriptSource = require('./getCurrentScriptSource'); function parseURL(resourceQuery) { var options; if (typeof resourceQuery === 'string' && resourceQuery !== '') { // If this bundle is inlined, use the resource query to get the correct url. // format is like `?http://0.0.0.0:8096&port=8097&host=localhost` options = url.parse(resourceQuery // strip leading `?` from query string to get a valid URL .substr(1) // replace first `&` with `?` to have a valid query string .replace('&', '?'), true); } else { // Else, get the url from the <script> this file was called with. var scriptSource = getCurrentScriptSource(); if (scriptSource) { var scriptSourceURL; try { // The placeholder `baseURL` with `window.location.href`, // is to allow parsing of path-relative or protocol-relative URLs, // and will have no effect if `scriptSource` is a fully valid URL. scriptSourceURL = new URL(scriptSource, self.location.href); } catch (error) {// URL parsing failed, do nothing. // We will still proceed to see if we can recover using `resourceQuery` } if (scriptSourceURL) { options = scriptSourceURL; } } else { options = url.parse(self.location.href, true, true); } } return options; } module.exports = parseURL;