How to use the use-query-params.decodeDelimitedArray 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 / utils / CommaArrayParam.js View on Github external
  decode: (arrayStr: string | string[] | null | undefined) => decodeDelimitedArray(arrayStr, ','),
};