mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
733 B
22 lines
733 B
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const qs = require('querystring');
|
|
|
|
function check(actual, expected) {
|
|
assert(!(actual instanceof Object));
|
|
assert.deepStrictEqual(Object.keys(actual).sort(),
|
|
Object.keys(expected).sort());
|
|
Object.keys(expected).forEach(function(key) {
|
|
assert.deepStrictEqual(actual[key], expected[key]);
|
|
});
|
|
}
|
|
|
|
check(qs.parse('foo=>bar&&bar=>baz', '&&', '=>'), {foo: 'bar', bar: 'baz'});
|
|
|
|
check(qs.stringify({foo: 'bar', bar: 'baz'}, '&&', '=>'), 'foo=>bar&&bar=>baz');
|
|
|
|
check(qs.parse('foo==>bar, bar==>baz', ', ', '==>'), {foo: 'bar', bar: 'baz'});
|
|
|
|
check(qs.stringify({foo: 'bar', bar: 'baz'}, ', ', '==>'),
|
|
'foo==>bar, bar==>baz');
|
|
|