Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/function/ctor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ var v = add.toString();
- In pre-ES2015 environments, only plain identifiers (without defaults) are valid JavaScript parameters.
- Creating `Function` objects with the `Function` constructor is less efficient than declaring a function via a function expression or a function statement.
- The `Function` constructor can be invoked without the `new` operator (using `new` and not using `new` both return a new `Function` object).
- The `Function` constructor creates functions which execute in the **global scope**. Hence, created functions **cannot** access variables local to the scope in which functions were created.
- The `Function` constructor creates functions which execute in the **global scope**. Hence, created functions **cannot** access variables local to the scope in which functions were created.

</section>

Expand Down