-
Notifications
You must be signed in to change notification settings - Fork 640
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
docs(node/querystring): Add docs #1531
Conversation
node/querystring.ts
Outdated
|
||
/** | ||
* Alias of querystring.parse() | ||
* @deprecated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
querystring APIs are tagged as Legacy
but it seems that legacy
is different from deprecated
in Node.js documentation (ref: nodejs/node#37784 for example )
So maybe we should tag this as @legacy
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 349b5f1
node/querystring.ts
Outdated
@@ -2,7 +2,114 @@ | |||
import { Buffer } from "./buffer.ts"; | |||
import { ERR_INVALID_URI } from "./_errors.ts"; | |||
|
|||
export interface ParsedUrlQuery { | |||
/******************** querystring.decode() ********************/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm afraid this kind of comments are just confusing to other contributors because we don't have rule to group functions & variable by the position in the source code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I reffered https://github.com/denoland/deno_std/blob/905408229b64a4b8b1b3886135fb7f1dae13417d/testing/fast_check_example.ts but this is just example so I deleted. 7d04d5f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wafuwafu13 LGTM. Thanks for updating!
hexTable
export