Skip to content

Commit

Permalink
Add back in missing DEBUG variable for png.js
Browse files Browse the repository at this point in the history
  • Loading branch information
codedread committed Jan 19, 2024
1 parent f1096f0 commit 0a79ef1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions image/parsers/png.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ import { getExifProfile } from './exif.js';
// https://www.w3.org/TR/png-3/
// https://en.wikipedia.org/wiki/PNG#File_format

let DEBUG = false;

const SIG = new Uint8Array([0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A]);

/** @enum {string} */
Expand Down

0 comments on commit 0a79ef1

Please sign in to comment.