Files
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +08:00

8 lines
217 B
JavaScript

if (!('currentScript' in document)) {
Object.defineProperty(document, 'currentScript', { get: window.getCurrentScript })
}
if (document.currentScript) {
document.getElementById('app').textContent = 'It works!'
}