1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/qs/lib/formats.js

24 lines
476 B
JavaScript
Raw Permalink Normal View History

2023-12-18 13:12:25 +08:00
'use strict';
var replace = String.prototype.replace;
var percentTwenties = /%20/g;
2024-01-16 21:26:16 +08:00
var Format = {
RFC1738: 'RFC1738',
RFC3986: 'RFC3986'
};
2023-12-18 13:12:25 +08:00
module.exports = {
2024-01-16 21:26:16 +08:00
'default': Format.RFC3986,
2023-12-18 13:12:25 +08:00
formatters: {
RFC1738: function (value) {
return replace.call(value, percentTwenties, '+');
},
RFC3986: function (value) {
2024-01-16 21:26:16 +08:00
return String(value);
2023-12-18 13:12:25 +08:00
}
},
2024-01-16 21:26:16 +08:00
RFC1738: Format.RFC1738,
RFC3986: Format.RFC3986
2023-12-18 13:12:25 +08:00
};