summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/rules/no-implied-eval.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/lib/rules/no-implied-eval.js')
-rw-r--r--tools/node_modules/eslint/lib/rules/no-implied-eval.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/node_modules/eslint/lib/rules/no-implied-eval.js b/tools/node_modules/eslint/lib/rules/no-implied-eval.js
index f2f6f9cea4..e0764d8223 100644
--- a/tools/node_modules/eslint/lib/rules/no-implied-eval.js
+++ b/tools/node_modules/eslint/lib/rules/no-implied-eval.js
@@ -64,7 +64,6 @@ module.exports = {
* Determines if a node represents a call to a potentially implied eval.
*
* This checks the callee name and that there's an argument, but not the type of the argument.
- *
* @param {ASTNode} node The CallExpression to check.
* @returns {boolean} True if the node matches, false if not.
* @private