.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / source-map-resolve / lib / decode-uri-component.js
1 var decodeUriComponent = require("decode-uri-component")
2
3 function customDecodeUriComponent(string) {
4   // `decodeUriComponent` turns `+` into ` `, but that's not wanted.
5   return decodeUriComponent(string.replace(/\+/g, "%2B"))
6 }
7
8 module.exports = customDecodeUriComponent