12345678910111213141516171819202122 |
- 'use strict';
- function getCurrentScriptSource() {
-
-
- if (document.currentScript) {
- return document.currentScript.getAttribute('src');
- }
- var scriptElements = document.scripts || [];
- var currentScript = scriptElements[scriptElements.length - 1];
- if (currentScript) {
- return currentScript.getAttribute('src');
- }
- throw new Error('[WDS] Failed to get current script source.');
- }
- module.exports = getCurrentScriptSource;
|