Disallows the $.when
utility. Prefer Promise.all
.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.when( a, b );
✔️ Examples of correct code:
When();
new When();
'test'.when();
'test'.when;
$when();
Disallows the $.when
utility. Prefer Promise.all
.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.when( a, b );
✔️ Examples of correct code:
When();
new When();
'test'.when();
'test'.when;
$when();