We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a90386b commit 842bc64Copy full SHA for 842bc64
doc/api/querystring.md
@@ -2,7 +2,7 @@
2
3
<!--introduced_in=v0.1.25-->
4
5
-> Stability: 3 - Legacy
+> Stability: 2 - Stable
6
7
<!--name=querystring-->
8
@@ -15,8 +15,9 @@ query strings. It can be accessed using:
15
const querystring = require('node:querystring');
16
```
17
18
-The `querystring` API is considered Legacy. While it is still maintained,
19
-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
20
+when compatibility with browser code is desirable.
21
22
## `querystring.decode()`
23
0 commit comments