---
source: crates/rolldown_testing/src/integration_test.rs
---
# Assets
## main.js
```js
//#region constants.js
const mode = "production";
const one = 1;
const bool = true;
const primitiveUndefined = void 0;
const primitiveNull = null;
const longString = "1234";
const shortString = "123";
//#endregion
//#region main.js
console.log(mode, 1, true, null, void 0, longString, "123");
if (1 || "production" || true || null || void 0 || "1234" || "123") console.log("test");
if ("production" === "production") console.log("production");
function test() {
var two = "production" === 1 ? "two" : "unused two";
var three = "production" === 1 || "unused three";
var four = "production" === 1 && "four";
var five = "production" ?? "five";
return two + three + four + five;
}
//#endregion
export { test };
```