log-src-in-microtask.js 261 B

123456789
  1. var app = document.getElementById('app')
  2. if (typeof Promise === 'undefined') {
  3. // skip this test in IE
  4. app.textContent = window.getCurrentScript().src
  5. } else {
  6. Promise.resolve().then(function() {
  7. app.textContent = window.getCurrentScript().src
  8. })
  9. }