lotus / node_modules /@soda /get-current-script /fixtures /log-src-in-microtask.js
k-l-lambda's picture
updated node_modules
4cadbaf
var app = document.getElementById('app')
if (typeof Promise === 'undefined') {
// skip this test in IE
app.textContent = window.getCurrentScript().src
} else {
Promise.resolve().then(function() {
app.textContent = window.getCurrentScript().src
})
}