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

gon_helper.js « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51d5ece5fc1a9d8280020173055235f4c6027299 (plain)
1
2
3
4
5
export const createGon = (IS_EE) => {
  return {
    ee: IS_EE,
  };
};