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: 09101b7a64ffdd728f5513b80adefaf9ad96511c (plain)
1
2
3
4
5
6
/* eslint-disable import/no-commonjs */
module.exports = {
  process: (content) => {
    return `module.exports = ${JSON.stringify(content)}`;
  },
};