Skip to content

chore: fix EditorConfig lint errors (issue #6851) #6859

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 29, 2025
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