Skip to content

Commit d5f5cc0

Browse files
committed
Added JS dummy.js
1 parent 9dfd816 commit d5f5cc0

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

dummy.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// A large dummy file to demonstrate compression
2+
console.log("Initializing the super-compressed application...");
3+
const data = Array(1000).fill("This is a repetitive string to show how well compression works.").join("\n");
4+
console.log("Data loaded.");
5+
6+
// Change background color to red
7+
if (typeof document !== 'undefined') {
8+
document.body.style.backgroundColor = 'red';
9+
console.log("Background color changed to red");
10+
}
11+

0 commit comments

Comments
 (0)