Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 489 Bytes

no-grep.md

File metadata and controls

26 lines (18 loc) · 489 Bytes

no-grep

Disallows the $.grep utility. Prefer Array#filter.

📋 This rule is enabled in plugin:no-jquery/all.

Rule details

❌ Examples of incorrect code:

$.grep();

✔️ Examples of correct code:

grep();
'test'.grep();
'test'.grep;

Resources