debian-mirror-gitlab/spec/frontend/__helpers__/raw_transformer.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
161 B
JavaScript
Raw Normal View History

2023-01-13 00:05:48 +05:30
/* eslint-disable import/no-commonjs */
module.exports = {
process: (content) => {
2023-03-04 22:38:38 +05:30
return { code: `module.exports = ${JSON.stringify(content)}` };
2023-01-13 00:05:48 +05:30
},
};