export function getCurrentScript()

in src/utils/index.js [86:89]


export function getCurrentScript() {
  const scripts = document.getElementsByTagName('script');
  return scripts[scripts.length - 1] || null;
}