rolldown 0.1.1

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

## entry.js

```js
//#region entry.js
(() => {
	function a() {
		b();
	}
	var b = () => {
		console.log();
	};
	a();
})();
//#endregion

```