Skip to content

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.

Never use the Function constructor.

var subtract = Function('a', 'b', 'return a - b');

Creating a function using the Function constructor evaluates a string similarly to eval() which may open up vulnerabilities.

From the Airbnb JavaScript Style Guide