qs.parse is parsing the string with + properly · Issue #305 · sindresorhus/query-string (original) (raw)
?externaluserid=454545454&email=abc+123@gmail.com&order=165615&token=dtc5uwvmkC
is converting the email's + to a space.
{email: "abc 123@gmail.com", externaluserid: "454545454", token: "dtc5uwvmkC", order: "165615"}
It should keep + in email instead of converting this to a space.