Files
tmdb-ts/src/utils/parseOptions.ts
Blake Joynes 9e54e26e87 run prettier
2023-04-20 06:26:53 -04:00

5 lines
212 B
TypeScript

export function parseOptions(options?: Record<string, any>): string {
/* eslint-disable @typescript-eslint/no-explicit-any */
return options ? new URLSearchParams(Object.entries(options)).toString() : '';
}