/opt/canhelp/node_modules/openai/src/internal/qs
NameSizeModeActions
formats.ts3910644editdlrm
index.ts3250644editdlrm
LICENSE.md15880644editdlrm
README.md1700644editdlrm
stringify.ts117340644editdlrm
types.ts21830644editdlrm
utils.ts67240644editdlrm
Edit: /opt/canhelp/node_modules/openai/src/internal/qs/formats.ts (391B)
import type { Format } from './types'; export const default_format: Format = 'RFC3986'; export const default_formatter = (v: PropertyKey) => String(v); export const formatters: Record string> = { RFC1738: (v: PropertyKey) => String(v).replace(/%20/g, '+'), RFC3986: default_formatter, }; export const RFC1738 = 'RFC1738'; export const RFC3986 = 'RFC3986';