Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: qs -> neoqs #1976

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/plugins/jsonp.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

'use strict';

var qs = require('qs');
var qs = require('neoqs/legacy');

///--- API

Expand Down
4 changes: 2 additions & 2 deletions lib/plugins/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

'use strict';

var qs = require('qs');
var qs = require('neoqs/legacy');
var assert = require('assert-plus');

/**
Expand All @@ -12,7 +12,7 @@ var assert = require('assert-plus');
* You can disable by passing in `mapParams: false` in the options object.
*
* Many options correspond directly to option defined for the underlying
* [`qs.parse`](https://github.com/ljharb/qs).
* [`qs.parse`](https://github.com/puruvj/neoqs).
*
* @public
* @function queryParser
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@
"lru-cache": "^7.14.1",
"mime": "^3.0.0",
"negotiator": "^0.6.2",
"neoqs": "^6.12.4",
"once": "^1.4.0",
"pidusage": "^3.0.2",
"pino": "^8.7.0",
"qs": "^6.7.0",
"restify-errors": "^8.0.2",
"semver": "^7.3.8",
"send": "^0.18.0",
Expand Down