Enforce either URLSearchParams or require("url").URLSearchParams (n/prefer-global/url-search-params)
The URLSearchParams class of url module is defined as a global variable.
js
console.log(URLSearchParams === require("url").URLSearchParams) //→ trueIt will be readable if we use either URLSearchParams consistently.
📖 Rule Details
This rule enforces which URLSearchParams we should use.
Options
This rule has a string option.
json
{
"n/prefer-global/url-search-params": ["error", "always" | "never"]
}"always"(default) ... enforces to use the global variableURLSearchParamsrather thanrequire("url").URLSearchParams."never"... enforces to userequire("url").URLSearchParamsrather than the global variableURLSearchParams.
always
Examples of 👎 incorrect code for this rule:
js
/*eslint n/prefer-global/url-search-params: [error]*/
const { URLSearchParams } = require("url")
const u = new URLSearchParams(s)Examples of 👍 correct code for this rule:
js
/*eslint n/prefer-global/url-search-params: [error]*/
const u = new URLSearchParams(s)never
Examples of 👎 incorrect code for the "never" option:
js
/*eslint n/prefer-global/url-search-params: [error, never]*/
const u = new URLSearchParams(s)Examples of 👍 correct code for the "never" option:
js
/*eslint n/prefer-global/url-search-params: [error, never]*/
const { URLSearchParams } = require("url")
const u = new URLSearchParams(s)