Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

9 wiersze
274 B

  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