Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9dbc8073d3ad99f6ccb0719550f13804cd6e9a6c (plain)
1
2
3
4
5
6
7
8
import { pickBy } from 'lodash';
import { SUPPORTED_FILTER_PARAMETERS } from './constants';

export const validateParams = params => {
  return pickBy(params, (val, key) => SUPPORTED_FILTER_PARAMETERS.includes(key) && val);
};

export default () => {};