vardecodeUriComponent=require("decode-uri-component")functioncustomDecodeUriComponent(string){// `decodeUriComponent` turns `+` into ` `, but that's not wanted.returndecodeUriComponent(string.replace(/\+/g,"%2B"))}module.exports=customDecodeUriComponent