ilsanchez/simple-query-params

View on GitHub
src/constants.ts

Summary

Maintainability
A
0 mins
Test Coverage
const URL_SPLIT_TOKEN = '?';
const PARAMETER_SPLIT_TOKEN = '&';
const ARRAY_PARAMETER_JOIN_TOKEN = ',';

export {
  URL_SPLIT_TOKEN,
  PARAMETER_SPLIT_TOKEN,
  ARRAY_PARAMETER_JOIN_TOKEN
}
;