summaryrefslogtreecommitdiff
path: root/spec/frontend/__helpers__/raw_transformer.js
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)}` };
  },
};