"...composable_kernel_onnx.git" did not exist on "e2b4c5b469db934af4b8b81d860df56be69764ce"
Commit 5c65da31 authored by comfyanonymous's avatar comfyanonymous
Browse files

Remove prints.

parent b935bea3
...@@ -128,7 +128,6 @@ export function getWebpMetadata(file) { ...@@ -128,7 +128,6 @@ export function getWebpMetadata(file) {
const length = dataView.getUint32(offset + 4, true); const length = dataView.getUint32(offset + 4, true);
// Get the chunk type // Get the chunk type
const type = String.fromCharCode(...pngData.slice(offset, offset + 4)); const type = String.fromCharCode(...pngData.slice(offset, offset + 4));
console.log(length, type);
if (type === "EXIF") { if (type === "EXIF") {
// Get the keyword // Get the keyword
let data = parseExifData(pngData.slice(offset + 8, offset + 8 + length)); let data = parseExifData(pngData.slice(offset + 8, offset + 8 + length));
...@@ -142,7 +141,6 @@ export function getWebpMetadata(file) { ...@@ -142,7 +141,6 @@ export function getWebpMetadata(file) {
offset += 8 + length; offset += 8 + length;
} }
console.log(txt_chunks);
r(txt_chunks); r(txt_chunks);
}; };
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment