Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

9 строки
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