UNPKG

208 BJavaScriptView Raw
1export function resolveUserAgentConfig(input) {
2 return {
3 ...input,
4 customUserAgent: typeof input.customUserAgent === "string" ? [[input.customUserAgent]] : input.customUserAgent,
5 };
6}