Remove unnecessary function

This commit is contained in:
Marvin Sextro 2021-06-29 02:02:53 +02:00
parent 54848cb87c
commit 6c0520c526
1 changed files with 0 additions and 5 deletions

View File

@ -35,11 +35,6 @@ export async function processJpeg(file) {
}
export async function processPng(file) {
const png = await readPngAsync(file)
return png
}
export async function readPngAsync(file) {
return new Promise(async (resolve, reject) => {
let png = new PNG({ filterType: 4 })