您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

decode-uri-component.js 350B

1234567891011
  1. // Copyright 2017 Simon Lydell
  2. // X11 (“MIT”) Licensed. (See LICENSE.)
  3. var decodeUriComponent = require("decode-uri-component")
  4. function customDecodeUriComponent(string) {
  5. // `decodeUriComponent` turns `+` into ` `, but that's not wanted.
  6. return decodeUriComponent(string.replace(/\+/g, "%2B"))
  7. }
  8. module.exports = customDecodeUriComponent