Skip to content

Commit 062a2a3

Browse files
committed
v6.3.5
1 parent cccfce4 commit 062a2a3

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## **6.3.5**
2+
- [Fix] fix regressions from robustness refactor
3+
- [meta] add `npmignore` to autogenerate an npmignore file
4+
- [actions] update reusable workflows
5+
16
## **6.3.4**
27
- [Robustness] avoid `.push`, use `void`
38
- [readme] clarify `parseArrays` and `arrayLimit` documentation (#543)

dist/qs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ var parseKeys = function parseQueryStringKeys(givenKey, val, options) {
158158
// If there's a remainder, just add whatever is left
159159

160160
if (segment) {
161-
keys[keys.length] = '[' + key.slice(segment.index + ']');
161+
keys[keys.length] = '[' + key.slice(segment.index) + ']';
162162
}
163163

164164
return parseObject(keys, val, options);
@@ -418,7 +418,7 @@ var has = Object.prototype.hasOwnProperty;
418418
var hexTable = (function () {
419419
var array = [];
420420
for (var i = 0; i < 256; ++i) {
421-
array[array.length] = '%' + ((i < 16 ? '0' : '' + i.toString(16)).toUpperCase());
421+
array[array.length] = '%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase();
422422
}
423423

424424
return array;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "qs",
33
"description": "A querystring parser that supports nesting and arrays, with a depth limit",
44
"homepage": "https://github.com/ljharb/qs",
5-
"version": "6.3.4",
5+
"version": "6.3.5",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/ljharb/qs.git"

0 commit comments

Comments
 (0)