Disallows the $.grep
utility. Prefer Array#filter
.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.grep();
✔️ Examples of correct code:
grep();
'test'.grep();
'test'.grep;
Disallows the $.grep
utility. Prefer Array#filter
.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.grep();
✔️ Examples of correct code:
grep();
'test'.grep();
'test'.grep;