We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc13250 commit 33c4c7fCopy full SHA for 33c4c7f
lib/parse.js
@@ -67,7 +67,7 @@ var parseValues = function parseQueryStringValues(str, options) {
67
68
// Check if parts exceed the parameter limit and handle it
69
if (options.throwOnLimitExceeded && parts.length > limit) {
70
- throw new Error(`Parameter limit exceeded. Only ${limit} parameters allowed.`);
+ throw new Error('Parameter limit exceeded. Only ' + limit + ' parameters allowed.');
71
}
72
73
var skipIndex = -1; // Keep track of where the utf8 sentinel was found
0 commit comments