Disallows the $.trim
utility. Prefer String#trim
.
📋 This rule is enabled in plugin:no-jquery/deprecated-3.5
.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.trim( ' test ' );
✔️ Examples of correct code:
trim( ' test ' );
' test '.trim();
' test '.trim;
$( 'input' ).text().trim();
$( 'input' ).data( 'foo' ).trim();