gitlab-org--gitlab-foss/app/assets/javascripts/lib/utils/experimentation.js

4 lines
115 B
JavaScript

export function isExperimentEnabled(experimentKey) {
return Boolean(window.gon?.experiments?.[experimentKey]);
}