-
Notifications
You must be signed in to change notification settings - Fork 698
Description
Reproduction link or steps
What is expected?
The output to be:
//#region index.cjs
exports.foo = function a() {
"use strict";
return "foo";
};
//#endregionWhat is actually happening?
The output is:
//#region index.cjs
exports.foo = function a() {
return "foo";
};
//#endregionSystem Info
1.0.0-beta.47Any additional comments?
Maybe related to #6879
Reactions are currently unavailable