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";
|
||
|
|
},
|
||
|
|
};
|