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

graphql_transformer.js « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e776e2ea6aca551cb4c5290aeb36d776f50c80ed (plain)
1
2
3
4
5
6
7
8
/* eslint-disable import/no-commonjs */
const loader = require('graphql-tag/loader');

module.exports = {
  process(src) {
    return loader.call({ cacheable() {} }, src);
  },
};