mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10 lines
351 B
TypeScript
10 lines
351 B
TypeScript
|
import { ReadonlyURLSearchParams } from "next/navigation";
|
||
|
|
||
|
export const generateQueryParams = (searchParams: ReadonlyURLSearchParams, excludedParamKeys?: string[]): string => {
|
||
|
const params = new URLSearchParams(searchParams);
|
||
|
excludedParamKeys && excludedParamKeys.forEach((key) => {
|
||
|
params.delete(key);
|
||
|
});
|
||
|
return params.toString();
|
||
|
};
|