source: trip-planner-front/node_modules/source-map-resolve/lib/decode-uri-component.js@ e29cc2e

Last change on this file since e29cc2e was e29cc2e, checked in by Ema <ema_spirova@…>, 3 years ago

primeNG components

  • Property mode set to 100644
File size: 274 bytes
Line 
1var decodeUriComponent = require("decode-uri-component")
2
3function customDecodeUriComponent(string) {
4 // `decodeUriComponent` turns `+` into ` `, but that's not wanted.
5 return decodeUriComponent(string.replace(/\+/g, "%2B"))
6}
7
8module.exports = customDecodeUriComponent
Note: See TracBrowser for help on using the repository browser.