urltomarkdown/node_modules/qs/lib/formats.js

24 lines
476 B
JavaScript
Raw Normal View History

2022-01-08 17:05:05 +00:00
'use strict';
var replace = String.prototype.replace;
var percentTwenties = /%20/g;
2022-01-08 17:17:05 +00:00
var Format = {
RFC1738: 'RFC1738',
RFC3986: 'RFC3986'
};
2022-01-08 17:05:05 +00:00
module.exports = {
2022-01-08 17:17:05 +00:00
'default': Format.RFC3986,
2022-01-08 17:05:05 +00:00
formatters: {
RFC1738: function (value) {
return replace.call(value, percentTwenties, '+');
},
RFC3986: function (value) {
2022-01-08 17:17:05 +00:00
return String(value);
2022-01-08 17:05:05 +00:00
}
},
2022-01-08 17:17:05 +00:00
RFC1738: Format.RFC1738,
RFC3986: Format.RFC3986
2022-01-08 17:05:05 +00:00
};