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

user_feature_helper.js « helpers « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 638118a5204118f06b8994ccde609c86aab9e128 (plain)
1
2
3
4
5
6
7
import Cookies from 'js-cookie';

export default {
  isNewRepoEnabled() {
    return Cookies.get('new_repo') === 'true';
  },
};