fixes and removing logs

This commit is contained in:
MathMan05 2024-09-20 14:41:19 -05:00
parent 6a7a7a15e4
commit 4e3f3a1058
2 changed files with 1 additions and 3 deletions

View file

@ -26,7 +26,7 @@ gulp.task("copy-assets", () => {
"src/**/*.jpeg", "src/**/*.jpeg",
"src/**/*.gif", "src/**/*.gif",
"src/**/*.svg", "src/**/*.svg",
]) ],{encoding:false})
.pipe(gulp.dest("dist")); .pipe(gulp.dest("dist"));
}); });

View file

@ -115,7 +115,6 @@ class Emoji{
}); });
} }
this.emojis = build; this.emojis = build;
console.log(build);
} }
static grabEmoji(){ static grabEmoji(){
fetch("/emoji.bin") fetch("/emoji.bin")
@ -123,7 +122,6 @@ class Emoji{
return e.arrayBuffer(); return e.arrayBuffer();
}) })
.then(e=>{ .then(e=>{
console.log(e);
Emoji.decodeEmojiList(e); Emoji.decodeEmojiList(e);
}); });
} }