8000 doc: remove Legacy status from querystring by Trott · Pull Request #44912 · nodejs/node · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Load 8000 ing
Diff view
Diff view
7 changes: 4 additions & 3 deletions doc/api/querystring.md
Original file line number Diff line number Diff line change
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
0