You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importquerystringfrom'query-string';// Removes a value from an array given its keyconstremoveFilter=(filterKey,array)=>{constfilteredArray=array.filter((filter)=>filter.key!==filterKey);constqs=querystring.stringify(filteredArray);returnqs;}
I want to exclude a value of an array from query string.
How I can do this?
The text was updated successfully, but these errors were encountered: