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

experimentation.js « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 555e76055e0acc007012c5d13af501025da13101 (plain)
1
2
3
export function isExperimentEnabled(experimentKey) {
  return Boolean(window.gon?.experiments?.[experimentKey]);
}