mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 23:17:38 +00:00
9 lines
164 B
JavaScript
9 lines
164 B
JavaScript
module.exports = {
|
|
process() {
|
|
return 'module.exports = {};';
|
|
},
|
|
getCacheKey() {
|
|
// The output is always the same.
|
|
return 'svgTransform';
|
|
},
|
|
};
|