Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 515 Bytes

no-when.md

File metadata and controls

28 lines (20 loc) · 515 Bytes

no-when

Disallows the $.when utility. Prefer Promise.all.

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

Rule details

❌ Examples of incorrect code:

$.when( a, b );

✔️ Examples of correct code:

When();
new When();
'test'.when();
'test'.when;
$when();

Resources