formats.js 405 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.RFC3986 = exports.RFC1738 = exports.formatters = exports.default_format = void 0;
  4. exports.default_format = 'RFC3986';
  5. exports.formatters = {
  6. RFC1738: (v) => String(v).replace(/%20/g, '+'),
  7. RFC3986: (v) => String(v),
  8. };
  9. exports.RFC1738 = 'RFC1738';
  10. exports.RFC3986 = 'RFC3986';
  11. //# sourceMappingURL=formats.js.map