mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 13:29:56 +02: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();
|
||
|
|
};
|