brk_rolldown 0.8.0

Fast JavaScript bundler in Rust, designed for the future of Vite
Documentation
---
source: crates/rolldown_testing/src/integration_test.rs
---
# Assets

## main.js

```js
Object.defineProperty(exports, '__esModule', { value: true });

//#region mod.js
function example() {
	return "named";
}

//#endregion
//#region main.js
function a() {
	return "named";
}
var main_default = example();

//#endregion
exports.a = a;
exports.default = main_default;
```