You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

decode-uri-component.js 274B

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