GoScrobble/web/node_modules/@pmmmwh/react-refresh-webpack-plugin/sockets/utils/getCurrentScriptSource.js

23 lines
744 B
JavaScript
Raw Normal View History

2022-04-25 02:47:15 +00:00
/**
* Gets the source (i.e. host) of the script currently running.
* @returns {string}
*/
function getCurrentScriptSource() {
// `document.currentScript` is the most accurate way to get the current running script,
// but is not supported in all browsers (most notably, IE).
if (document.currentScript) {
return document.currentScript.getAttribute('src');
}
// Fallback to getting all scripts running in the document.
const scriptElements = document.scripts || [];
const currentScript = scriptElements[scriptElements.length - 1];
if (currentScript) {
return currentScript.getAttribute('src');
}
throw new Error('[React Refresh] Failed to get current script source!');
}
module.exports = getCurrentScriptSource;