r3-v2/node_modules/source-map-resolve/lib/decode-uri-component.js

9 lines
274 B
JavaScript
Raw Normal View History

2020-02-27 15:24:35 +01:00
var decodeUriComponent = require("decode-uri-component")
function customDecodeUriComponent(string) {
// `decodeUriComponent` turns `+` into ` `, but that's not wanted.
return decodeUriComponent(string.replace(/\+/g, "%2B"))
}
module.exports = customDecodeUriComponent