source: frontend/node_modules/qs/lib/formats.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 476 bytes
RevLine 
[9af201e]1'use strict';
2
3var replace = String.prototype.replace;
4var percentTwenties = /%20/g;
5
6var Format = {
7 RFC1738: 'RFC1738',
8 RFC3986: 'RFC3986'
9};
10
11module.exports = {
12 'default': Format.RFC3986,
13 formatters: {
14 RFC1738: function (value) {
15 return replace.call(value, percentTwenties, '+');
16 },
17 RFC3986: function (value) {
18 return String(value);
19 }
20 },
21 RFC1738: Format.RFC1738,
22 RFC3986: Format.RFC3986
23};
Note: See TracBrowser for help on using the repository browser.