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

getters.js « store « serverless « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 071f663d9d2dd485955399052c4ed901fff9ef61 (plain)
1
2
3
4
5
6
7
8
9
10
import { translate } from '../utils';

export const hasPrometheusMissingData = state => state.hasPrometheus && !state.hasPrometheusData;

// Convert the function list into a k/v grouping based on the environment scope

export const getFunctions = state => translate(state.functions);

// prevent babel-plugin-rewire from generating an invalid default during karma tests
export default () => {};