// Copyright 2017 Simon Lydell
// X11 (“MIT”) Licensed. (See LICENSE.)
vardecodeUriComponent=require("decode-uri-component")functioncustomDecodeUriComponent(string){// `decodeUriComponent` turns `+` into ` `, but that's not wanted.
returndecodeUriComponent(string.replace(/\+/g, "%2B"))}module.exports=customDecodeUriComponent