currentScript property
HTMLOrSVGScriptElement?
get
currentScript
Returns the script element, or the SVG script element, that is currently executing, as long as the element represents a classic script. In the case of reentrant script execution, returns the one that most recently started executing amongst those that have not yet finished executing.
Returns null if the Document is not currently executing a script or SVG script element (e.g., because the running script is an event handler, or a timeout), or if the currently executing script or SVG script element represents a module script.
Implementation
_i3.HTMLOrSVGScriptElement? get currentScript => _i4.getProperty(
this,
'currentScript',
);