mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-24 14:36:54 +00:00
6a8e87f45f
* Implementing output bubble * Fix lint * Run prettier
12 lines
185 B
JavaScript
12 lines
185 B
JavaScript
module.exports = {
|
|
process() {
|
|
return {
|
|
code: `module.exports = {};`,
|
|
};
|
|
},
|
|
getCacheKey() {
|
|
// The output is always the same.
|
|
return "svgTransform";
|
|
},
|
|
};
|