1
0
mirror of https://github.com/covidpass-org/covidpass.git synced 2025-02-16 19:50:42 +01:00

Remove unnecessary function

This commit is contained in:
Marvin Sextro 2021-06-29 02:02:53 +02:00
parent 54848cb87c
commit 6c0520c526

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 })