summaryrefslogtreecommitdiff
path: root/web-ui/src/util.js
blob: 1b244458928e04ac86e530d63ef3e77114bd66ac (plain)
1
2
3
4
5
6
7
export const hasQueryParameter = param => (
  decodeURIComponent(window.location.search.substring(1)).includes(param)
);

export default {
  hasQueryParameter
};