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

utils.js « settings « registry « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75af401e96d2350483a58c73028c8e25e588e7f3 (plain)
1
2
3
4
5
6
export const findDefaultOption = options => {
  const item = options.find(o => o.default);
  return item ? item.key : null;
};

export default () => {};