rolldown 1.0.3

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

## entry.js

```js
import assert from "node:assert";
// HIDDEN [\0rolldown/runtime.js]
//#region foo.js
var require_foo = /* @__PURE__ */ __commonJSMin(((exports, module) => {
	module.exports = function() {
		return 123;
	};
}));
//#endregion
//#region entry.js
function nestedScope() {
	const fn = require_foo();
	assert.equal(fn(), 123);
}
nestedScope();
//#endregion

```