import _ from 'lodash'; export const setQueryParam = (location, query) => ({ pathname: location.pathname, hash: location.hash, query: _.assign({}, location.query, query), });