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

raw_transformer.js « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b0bed14e8d311ea0626540eed0591abb1e78946 (plain)
1
2
3
4
5
6
/* eslint-disable import/no-commonjs */
module.exports = {
  process: (content) => {
    return { code: `module.exports = ${JSON.stringify(content)}` };
  },
};