How to use the use-query-params.stringify function in use-query-params

To help you get started, we’ve selected a few use-query-params examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hotosm / tasking-manager / frontend / src / hooks / UseProjectsQueryAPI.js View on Github external
export const stringify = obj => {
  const encodedQuery = encodeQueryParams(projectQueryAllSpecification, obj);
  return stringifyUQP(encodedQuery);
};