add linting and prettier
This commit is contained in:
@@ -1,7 +1,3 @@
|
||||
export function parseOptions(
|
||||
options?: { [s: string]: any },
|
||||
): string {
|
||||
return options
|
||||
? new URLSearchParams(Object.entries(options)).toString()
|
||||
: '';
|
||||
export function parseOptions(options?: { [s: string]: any }): string {
|
||||
return options ? new URLSearchParams(Object.entries(options)).toString() : '';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user