1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-08 13:37:10 +09:00
ladybird/Libraries/LibJS/Tests/arguments-callee.js

6 lines
140 B
JavaScript

test("basic arguments.callee", () => {
var foo = function () {
return arguments.callee;
};
expect(foo()).toBe(foo);
});