mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01: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();
|
||
|
|
};
|