Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 440 Bytes

no-arg.md

File metadata and controls

13 lines (7 loc) · 440 Bytes

Pattern: Access to arguments.callee

Issue: -

Description

Disallows use of arguments.callee.

Rationale: Using arguments.callee makes various performance optimizations impossible. See MDN for more details on why to avoid arguments.callee.

Further Reading