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

filtered_search_utils.js « filtered_search_bar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85f7f746b49d8eeaca7b07afb1072fd1605689d5 (plain)
1
2
3
4
// eslint-disable-next-line import/prefer-default-export
export const stripQuotes = value => {
  return value.includes(' ') ? value.slice(1, -1) : value;
};