860b5affafcfa2a6ccd0cd8e4619d09b4b472c54c84be3ed4e4a03425ad27c49bc07a9c54bc09f939baff33b4924d2e6f2a166be50779225f9dcb5e1127ee7 274 B

12345678
  1. var decodeUriComponent = require("decode-uri-component")
  2. function customDecodeUriComponent(string) {
  3. // `decodeUriComponent` turns `+` into ` `, but that's not wanted.
  4. return decodeUriComponent(string.replace(/\+/g, "%2B"))
  5. }
  6. module.exports = customDecodeUriComponent