-
Notifications
You must be signed in to change notification settings - Fork 30.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
querystring: using toString for objects on querystring.escape
This commit fixes an inconsistency in querystring.escape objects handling compared to native encodeURIComponent function. Fixes: #5309 PR-URL: #5341 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net>
- Loading branch information
1 parent
59d23ad
commit 5dafb43
Showing
2 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
'use strict'; | ||
require('../common'); | ||
const assert = require('assert'); | ||
|
||
const qs = require('querystring'); | ||
|
||
assert.deepEqual(qs.escape(5), '5'); | ||
assert.deepEqual(qs.escape('test'), 'test'); | ||
assert.deepEqual(qs.escape({}), '%5Bobject%20Object%5D'); | ||
assert.deepEqual(qs.escape([5, 10]), '5%2C10'); | ||
|
||
// using toString for objects | ||
assert.strictEqual( | ||
qs.escape({test: 5, toString: () => 'test', valueOf: () => 10 }), | ||
'test' | ||
); | ||
|
||
// toString is not callable, must throw an error | ||
assert.throws(() => qs.escape({toString: 5})); | ||
|
||
// should use valueOf instead of non-callable toString | ||
assert.strictEqual(qs.escape({toString: 5, valueOf: () => 'test'}), 'test'); | ||
|
||
assert.throws(() => qs.escape(Symbol('test'))); |