-
-
Notifications
You must be signed in to change notification settings - Fork 35.6k
querystring.stringify does not support BigInt #36080
Copy link
Copy link
Closed
Labels
feature requestIssues that request new features to be added to Node.js.Issues that request new features to be added to Node.js.querystringIssues and PRs related to the built-in querystring module.Issues and PRs related to the built-in querystring module.
Metadata
Metadata
Assignees
Labels
feature requestIssues that request new features to be added to Node.js.Issues that request new features to be added to Node.js.querystringIssues and PRs related to the built-in querystring module.Issues and PRs related to the built-in querystring module.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Is your feature request related to a problem? Please describe.
it should print
a=12345678901234567Describe the solution you'd like
support
bigintin additional tostring,numberandboolean.i.e., in
stringifyPrimitiveencode any value wheretypeof v == 'bigint'as'' + v, the same as'number'.Describe alternatives you've considered
No.