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: fcd8569819c649eb6e01cd4a1ffdf705e1712469 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Cookies from 'js-cookie';

function isNewRepo() {
  return Cookies.get('new_repo') === 'true';
}

const UserFeatureHelper = {
  isNewRepo,
};

export default UserFeatureHelper;