Skip to content

Files

Latest commit

ca396f8 · Oct 22, 2021

History

History
26 lines (18 loc) · 515 Bytes

no-param.md

File metadata and controls

26 lines (18 loc) · 515 Bytes

no-param

Disallows the $.param utility. Prefer FormData or URLSearchParams.

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

Rule details

❌ Examples of incorrect code:

$.param();

✔️ Examples of correct code:

param();
'test'.param();
'test'.param;

Resources