scramjet/rewriter/tests/2-function-default.js
2024-08-02 18:16:44 -04:00

6 lines
75 B
JavaScript

function f(g = globalThis, l = location) {
check(g);
check(l);
}
f();