Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 565 Bytes

no-type.md

File metadata and controls

28 lines (19 loc) · 565 Bytes

no-type

Disallows the $.type utility. Prefer typeof/instanceof.

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

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

Rule details

❌ Examples of incorrect code:

$.type();

✔️ Examples of correct code:

type();
myMethod.type();
myMethod.type;

Resources