arguments-callee.js 140 B

123456
  1. test("basic arguments.callee", () => {
  2. var foo = function () {
  3. return arguments.callee;
  4. };
  5. expect(foo()).toBe(foo);
  6. });