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