Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: remove Legacy status from querystring #44912

Merged
merged 2 commits into from Oct 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions doc/api/querystring.md
Expand Up @@ -2,7 +2,7 @@

<!--introduced_in=v0.1.25-->

> Stability: 3 - Legacy
> Stability: 2 - Stable

<!--name=querystring-->

Expand All @@ -15,8 +15,9 @@ query strings. It can be accessed using:
const querystring = require('node:querystring');
```

The `querystring` API is considered Legacy. While it is still maintained,
new code should use the {URLSearchParams} API instead.
`querystring` is more performant than {URLSearchParams} but is not a
standardized API. Use {URLSearchParams} when performance is not critical or
when compatibility with browser code is desirable.

## `querystring.decode()`

Expand Down