Izmjenjena struktura, dodan backand

This commit is contained in:
GotPPay
2017-10-16 11:19:46 +02:00
parent 1ec88afacb
commit 048e32c4aa
37153 changed files with 2975854 additions and 1 deletions

38
web/node_modules/eslint/lib/rules/no-iterator.js generated vendored Normal file
View File

@@ -0,0 +1,38 @@
/**
* @fileoverview Rule to flag usage of __iterator__ property
* @author Ian Christian Myers
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: "disallow the use of the `__iterator__` property",
category: "Best Practices",
recommended: false
},
schema: []
},
create(context) {
return {
MemberExpression(node) {
if (node.property &&
(node.property.type === "Identifier" && node.property.name === "__iterator__" && !node.computed) ||
(node.property.type === "Literal" && node.property.value === "__iterator__")) {
context.report({ node, message: "Reserved name '__iterator__'." });
}
}
};
}
};