formats.mjs 259 B

12345678
  1. export const default_format = 'RFC3986';
  2. export const formatters = {
  3. RFC1738: (v) => String(v).replace(/%20/g, '+'),
  4. RFC3986: (v) => String(v),
  5. };
  6. export const RFC1738 = 'RFC1738';
  7. export const RFC3986 = 'RFC3986';
  8. //# sourceMappingURL=formats.mjs.map