45b21b4b483112343f0cf12f7614bcc61318cc97b0d9b71f6040f4a5b85c8fb4037bb6c65525f52ef7749b4b0c47c432cf59ef289d8eafbc63d31f7f25323a 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. }