mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 05:43:08 +09:00
5 lines
118 B
JavaScript
5 lines
118 B
JavaScript
var id = 0;
|
|
try {
|
|
id = eval("1 + 2 + 3");
|
|
} catch (e) {}
|
|
postMessage(id === 0 ? "eval blocked" : "eval allowed");
|