-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
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.
Description
Is your feature request related to a problem? Please describe.
> querystring.stringify({a: 12345678901234567n})
'a='
it should print a=12345678901234567
Describe the solution you'd like
support bigint
in additional to string
, number
and boolean
.
i.e., in stringifyPrimitive
encode any value where typeof v == 'bigint'
as '' + v
, the same as 'number'
.
Describe alternatives you've considered
No.
sapics
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.