cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v6.3.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/internal/utils/query.ts

7lines · modecode

1// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
3import * as qs from '../qs/stringify';
4
5export function stringifyQuery(query: object | Record<string, unknown>) {
6 return qs.stringify(query, { allowDots: true, arrayFormat: 'repeat' });
7}
8