No-New-Function
Documentation Index
Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
Use this file to discover all available pages before exploring further.
Sourcery rule id: no-new-function
Section titled “Sourcery rule id: no-new-function”Description
Section titled “Description”Never use the Function constructor.
var subtract = Function('a', 'b', 'return a - b');Explanation
Section titled “Explanation”Creating a function using the Function constructor evaluates a string similarly to eval() which may open
up vulnerabilities.
From the Airbnb JavaScript Style Guide