7 lines
284 B
JavaScript
7 lines
284 B
JavaScript
import { pickBy } from 'lodash';
|
|
import { SUPPORTED_FILTER_PARAMETERS } from './constants';
|
|
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
export const validateParams = params => {
|
|
return pickBy(params, (val, key) => SUPPORTED_FILTER_PARAMETERS.includes(key) && val);
|
|
};
|